richie-education 3.3.2-dev6 → 3.4.1-dev3
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/.eslintrc.json +0 -3
- package/.storybook/main.js +11 -12
- package/.storybook/preview.tsx +49 -24
- package/cunningham.cjs +31 -0
- package/i18n/compile-translations.js +12 -10
- package/i18n/locales/ar-SA.json +20 -0
- package/i18n/locales/es-ES.json +20 -0
- package/i18n/locales/fa-IR.json +20 -0
- package/i18n/locales/fr-CA.json +20 -0
- package/i18n/locales/fr-FR.json +21 -1
- package/i18n/locales/ko-KR.json +20 -0
- package/i18n/locales/pt-PT.json +42 -22
- package/i18n/locales/ru-RU.json +20 -0
- package/i18n/locales/vi-VN.json +20 -0
- package/jest.config.js +5 -0
- package/js/components/AddressesManagement/AddressForm/index.stories.tsx +1 -1
- package/js/components/AddressesManagement/AddressForm/index.tsx +4 -3
- package/js/components/AddressesManagement/index.stories.tsx +1 -1
- package/js/components/AddressesManagement/index.tsx +5 -3
- package/js/components/Badge/index.stories.tsx +1 -1
- package/js/components/Badge/index.tsx +1 -1
- package/js/components/Banner/index.stories.tsx +1 -1
- package/js/components/CourseGlimpse/index.stories.tsx +1 -1
- package/js/components/CourseGlimpseList/index.stories.tsx +1 -1
- package/js/components/CreditCardSelector/_styles.scss +2 -2
- package/js/components/CreditCardSelector/index.tsx +11 -3
- package/js/components/DownloadCertificateButton/index.tsx +2 -1
- package/js/components/DownloadContractButton/index.tsx +7 -1
- package/js/components/Form/Form/index.tsx +4 -2
- package/js/components/Icon/index.stories.tsx +2 -1
- package/js/components/Modal/index.stories.tsx +1 -1
- package/js/components/Modal/index.tsx +2 -1
- package/js/components/OpenEdxFullNameForm/index.stories.tsx +1 -1
- package/js/components/OpenEdxFullNameForm/index.tsx +2 -2
- package/js/components/PaymentScheduleGrid/_styles.scss +2 -2
- package/js/components/PurchaseButton/index.stories.tsx +1 -1
- package/js/components/RegisteredAddress/index.stories.tsx +1 -1
- package/js/components/RegisteredAddress/index.tsx +4 -2
- package/js/components/SaleTunnel/AddressSelector/CreateAddressFormModal.tsx +1 -1
- package/js/components/SaleTunnel/AddressSelector/EditAddressFormModal.tsx +1 -1
- package/js/components/SaleTunnel/AddressSelector/index.tsx +4 -2
- package/js/components/SaleTunnel/SaleTunnelInformation/SaleTunnelInformationGroup.tsx +4 -3
- package/js/components/SaleTunnel/SaleTunnelInformation/SaleTunnelInformationSingular.tsx +27 -5
- package/js/components/SaleTunnel/SubscriptionButton/index.tsx +7 -5
- package/js/components/SaleTunnel/_styles.scss +9 -8
- package/js/components/SaleTunnel/index.credential.spec.tsx +50 -1
- package/js/components/SaleTunnel/index.stories.tsx +1 -1
- package/js/components/Spinner/index.stories.tsx +1 -1
- package/js/components/Tabs/index.stories.tsx +1 -1
- package/js/components/Tabs/index.tsx +2 -1
- package/js/components/TeacherDashboardCourseList/index.tsx +2 -1
- package/js/hooks/useAddressesManagement.tsx +4 -2
- package/js/hooks/useCreditCards/index.ts +6 -4
- package/js/hooks/useDashboardAddressForm.tsx +3 -3
- package/js/hooks/useMatchMedia.ts +1 -1
- package/js/hooks/useResources/useResourcesRoot.ts +1 -1
- package/js/hooks/useUnionResource/index.ts +6 -2
- package/js/hooks/useUnionResource/utils/fetchEntity.ts +1 -0
- package/js/pages/DashboardAddressesManagement/DashboardAddressBox.tsx +3 -3
- package/js/pages/DashboardAddressesManagement/DashboardCreateAddress.stories.tsx +1 -1
- package/js/pages/DashboardAddressesManagement/DashboardCreateAddress.tsx +1 -1
- package/js/pages/DashboardAddressesManagement/DashboardEditAddress.stories.tsx +1 -1
- package/js/pages/DashboardAddressesManagement/DashboardEditAddress.tsx +3 -2
- package/js/pages/DashboardAddressesManagement/index.stories.tsx +1 -1
- package/js/pages/DashboardAddressesManagement/index.tsx +1 -1
- package/js/pages/DashboardCourses/index.tsx +2 -1
- package/js/pages/DashboardCreditCardsManagement/CreditCardBrandLogo.stories.tsx +1 -1
- package/js/pages/DashboardCreditCardsManagement/DashboardCreditCardBox.tsx +3 -3
- package/js/pages/DashboardCreditCardsManagement/DashboardEditCreditCard.stories.tsx +1 -1
- package/js/pages/DashboardCreditCardsManagement/DashboardEditCreditCard.tsx +3 -2
- package/js/pages/DashboardCreditCardsManagement/index.stories.tsx +1 -1
- package/js/pages/DashboardOpenEdxProfile/index.stories.tsx +1 -1
- package/js/pages/TeacherDashboardContractsLayout/components/BulkDownloadContractButton/index.tsx +4 -2
- package/js/pages/TeacherDashboardContractsLayout/components/SignOrganizationContractButton/index.tsx +2 -1
- package/js/pages/TeacherDashboardContractsLayout/hooks/useCheckContractArchiveExists/index.spec.tsx +4 -4
- package/js/pages/TeacherDashboardContractsLayout/hooks/useDownloadContractArchive/index.spec.tsx +8 -9
- package/js/pages/TeacherDashboardContractsLayout/hooks/useDownloadContractArchive/index.tsx +14 -3
- package/js/pages/TeacherDashboardCourseLearnersLayout/components/CourseLearnerDataGrid/index.tsx +6 -1
- package/js/pages/TeacherDashboardCourseLoader/CourseRunList/utils.tsx +2 -1
- package/js/pages/TeacherDashboardOrganizationAgreements/BulkAgreementContractButton.tsx +4 -2
- package/js/pages/TeacherDashboardOrganizationAgreements/SignOrganizationAgreementButton.tsx +2 -1
- package/js/pages/TeacherDashboardOrganizationQuotes/index.full-process.spec.tsx +2 -2
- package/js/pages/TeacherDashboardOrganizationQuotes/index.spec.tsx +1 -1
- package/js/pages/TeacherDashboardOrganizationQuotes/index.tsx +3 -2
- package/js/translations/ar-SA.json +1 -1
- package/js/translations/es-ES.json +1 -1
- package/js/translations/fa-IR.json +1 -1
- package/js/translations/fr-CA.json +1 -1
- package/js/translations/fr-FR.json +1 -1
- package/js/translations/ko-KR.json +1 -1
- package/js/translations/pt-PT.json +1 -1
- package/js/translations/ru-RU.json +1 -1
- package/js/translations/vi-VN.json +1 -1
- package/js/types/Joanie.ts +1 -1
- package/js/utils/ProductHelper/index.spec.ts +1 -1
- package/js/utils/StorybookHelper/index.tsx +3 -6
- package/js/utils/cunningham-tokens.ts +1111 -142
- package/js/utils/errors/handle.spec.ts +3 -3
- package/js/utils/react-query/useSessionMutation/index.ts +8 -3
- package/js/utils/test/factories/joanie.ts +1 -1
- package/js/widgets/Dashboard/components/DashboardAvatar/index.stories.tsx +1 -1
- package/js/widgets/Dashboard/components/DashboardBox/index.stories.tsx +13 -5
- package/js/widgets/Dashboard/components/DashboardBreadcrumbs/index.stories.tsx +1 -1
- package/js/widgets/Dashboard/components/DashboardBreadcrumbs/index.tsx +3 -2
- package/js/widgets/Dashboard/components/DashboardCard/index.spec.tsx +13 -2
- package/js/widgets/Dashboard/components/DashboardCard/index.stories.tsx +12 -4
- package/js/widgets/Dashboard/components/DashboardCard/index.tsx +1 -1
- package/js/widgets/Dashboard/components/DashboardItem/BatchOrder/BatchOrderPaymentModal/BatchOrderPaymentManager.tsx +1 -1
- package/js/widgets/Dashboard/components/DashboardItem/BatchOrder/BatchOrderPaymentModal/index.tsx +2 -1
- package/js/widgets/Dashboard/components/DashboardItem/Certificate/index.stories.tsx +1 -1
- package/js/widgets/Dashboard/components/DashboardItem/Contract/index.stories.tsx +1 -1
- package/js/widgets/Dashboard/components/DashboardItem/CourseEnrolling/index.stories.tsx +1 -1
- package/js/widgets/Dashboard/components/DashboardItem/CourseEnrolling/index.tsx +8 -4
- package/js/widgets/Dashboard/components/DashboardItem/Enrollment/DashboardItemEnrollment.stories.tsx +1 -1
- package/js/widgets/Dashboard/components/DashboardItem/Enrollment/ProductCertificateFooter/index.tsx +1 -1
- package/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrderReadonly.stories.tsx +1 -1
- package/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrderWritable.stories.tsx +1 -1
- package/js/widgets/Dashboard/components/DashboardItem/Order/Installment/index.tsx +1 -1
- package/js/widgets/Dashboard/components/DashboardItem/Order/OrderPaymentDetailsModal/_styles.scss +2 -2
- package/js/widgets/Dashboard/components/DashboardItem/Order/OrderPaymentRetryModal/index.tsx +2 -1
- package/js/widgets/Dashboard/components/DashboardItem/Order/OrganizationBlock/index.tsx +6 -3
- package/js/widgets/Dashboard/components/DashboardItem/index.stories.tsx +1 -1
- package/js/widgets/Dashboard/components/DashboardItem/index.tsx +2 -1
- package/js/widgets/Dashboard/components/DashboardListAvatar/index.stories.tsx +1 -1
- package/js/widgets/Dashboard/components/DashboardSidebar/index.stories.tsx +1 -1
- package/js/widgets/Dashboard/components/LearnerDashboardSidebar/index.stories.tsx +1 -1
- package/js/widgets/Dashboard/components/ProtectedOutlet/AuthenticatedOutlet.spec.tsx +1 -1
- package/js/widgets/Dashboard/components/ProtectedOutlet/ProtectedOutlet.spec.tsx +1 -1
- package/js/widgets/Dashboard/components/SearchBar/index.tsx +2 -1
- package/js/widgets/Dashboard/components/TeacherDashboardOrganizationSidebar/index.stories.tsx +1 -1
- package/js/widgets/Dashboard/components/TeacherDashboardProfileSidebar/index.stories.tsx +1 -1
- package/js/widgets/Dashboard/hooks/useRouteInfo/index.spec.tsx +2 -2
- package/js/widgets/Dashboard/index.spec.tsx +1 -1
- package/js/widgets/Search/components/SearchFilterValueParent/index.stories.tsx +1 -1
- package/js/widgets/Search/components/SearchFiltersPane/index.tsx +2 -1
- package/js/widgets/Slider/index.stories.tsx +1 -1
- package/js/widgets/Slider/index.tsx +7 -6
- package/js/widgets/SyllabusCourseRunsList/components/CourseProductItem/components/CourseProductCertificateItem/index.stories.tsx +1 -1
- package/js/widgets/SyllabusCourseRunsList/components/CourseProductItem/components/CourseRunItem/index.stories.tsx +1 -1
- package/js/widgets/SyllabusCourseRunsList/components/CourseProductItem/index.stories.tsx +1 -1
- package/js/widgets/SyllabusCourseRunsList/components/CourseWishButton/index.tsx +4 -2
- package/js/widgets/SyllabusCourseRunsList/components/SyllabusCourseRun/index.stories.tsx +1 -1
- package/js/widgets/SyllabusCourseRunsList/components/SyllabusCourseRunCompacted/index.stories.tsx +41 -0
- package/js/widgets/UserLogin/index.stories.tsx +1 -1
- package/package.json +76 -81
- package/scss/components/_subheader.scss +1 -1
- package/scss/components/templates/richie/slider/_slider.scss +1 -1
- package/scss/objects/_course_glimpses.scss +1 -0
- package/scss/trumps/_bootstrap.scss +1 -0
- package/scss/vendors/css/cunningham-tokens.css +1259 -154
- package/scss/vendors/cunningham-tokens.scss +1479 -150
- package/tsconfig.json +1 -1
- package/webpack.config.js +8 -0
|
@@ -1,37 +1,767 @@
|
|
|
1
1
|
$themes: (
|
|
2
2
|
'default': (
|
|
3
|
+
'globals': (
|
|
4
|
+
'colors': (
|
|
5
|
+
'logo-1': #377fdb,
|
|
6
|
+
'logo-2': #377fdb,
|
|
7
|
+
'logo-1-dark': #95abff,
|
|
8
|
+
'logo-2-dark': #95abff,
|
|
9
|
+
'brand-050': #fff0f1,
|
|
10
|
+
'brand-100': #ffcad1,
|
|
11
|
+
'brand-150': #f8b0b4,
|
|
12
|
+
'brand-200': #f19597,
|
|
13
|
+
'brand-250': #ed8083,
|
|
14
|
+
'brand-300': #e86a6f,
|
|
15
|
+
'brand-350': #ed575d,
|
|
16
|
+
'brand-400': #f2444b,
|
|
17
|
+
'brand-450': #f5383e,
|
|
18
|
+
'brand-500': #f63237,
|
|
19
|
+
'brand-550': #f72c30,
|
|
20
|
+
'brand-600': #e81f2f,
|
|
21
|
+
'brand-650': #d60f29,
|
|
22
|
+
'brand-700': #c90022,
|
|
23
|
+
'brand-750': #c2001b,
|
|
24
|
+
'brand-800': #bb0014,
|
|
25
|
+
'brand-850': #a30010,
|
|
26
|
+
'brand-900': #8c000d,
|
|
27
|
+
'brand-950': #6b0009,
|
|
28
|
+
'gray-000': #ffffff,
|
|
29
|
+
'gray-025': #f7f8f8,
|
|
30
|
+
'gray-050': #f0f1f2,
|
|
31
|
+
'gray-100': #e1e2e5,
|
|
32
|
+
'gray-150': #d2d4d8,
|
|
33
|
+
'gray-200': #c4c7cb,
|
|
34
|
+
'gray-250': #b5b9be,
|
|
35
|
+
'gray-300': #a7acb2,
|
|
36
|
+
'gray-350': #999ea5,
|
|
37
|
+
'gray-400': #8d9197,
|
|
38
|
+
'gray-450': #80848a,
|
|
39
|
+
'gray-500': #74777c,
|
|
40
|
+
'gray-550': #686b6f,
|
|
41
|
+
'gray-600': #5c5f63,
|
|
42
|
+
'gray-650': #505356,
|
|
43
|
+
'gray-700': #45474a,
|
|
44
|
+
'gray-750': #3a3b3e,
|
|
45
|
+
'gray-800': #2f3033,
|
|
46
|
+
'gray-850': #252627,
|
|
47
|
+
'gray-900': #1b1c1d,
|
|
48
|
+
'gray-950': #101112,
|
|
49
|
+
'gray-1000': #000000,
|
|
50
|
+
'info-050': #eaf1fb,
|
|
51
|
+
'info-100': #d5e4f7,
|
|
52
|
+
'info-150': #c0d6f4,
|
|
53
|
+
'info-200': #abc9f0,
|
|
54
|
+
'info-250': #96bcec,
|
|
55
|
+
'info-300': #80aee8,
|
|
56
|
+
'info-350': #6ca0e4,
|
|
57
|
+
'info-400': #5693e0,
|
|
58
|
+
'info-450': #4085dc,
|
|
59
|
+
'info-500': #2976d8,
|
|
60
|
+
'info-550': #1167d4,
|
|
61
|
+
'info-600': #0659c5,
|
|
62
|
+
'info-650': #1a509f,
|
|
63
|
+
'info-700': #20467f,
|
|
64
|
+
'info-750': #203c63,
|
|
65
|
+
'info-800': #1d314c,
|
|
66
|
+
'info-850': #1a2638,
|
|
67
|
+
'info-900': #141c28,
|
|
68
|
+
'info-950': #0c1117,
|
|
69
|
+
'success-050': #e4f7d4,
|
|
70
|
+
'success-100': #c8eea8,
|
|
71
|
+
'success-150': #aae579,
|
|
72
|
+
'success-200': #89dc45,
|
|
73
|
+
'success-250': #72cf27,
|
|
74
|
+
'success-300': #6ac024,
|
|
75
|
+
'success-350': #61b121,
|
|
76
|
+
'success-400': #59a21e,
|
|
77
|
+
'success-450': #51941c,
|
|
78
|
+
'success-500': #4b851a,
|
|
79
|
+
'success-550': #427816,
|
|
80
|
+
'success-600': #3a6a14,
|
|
81
|
+
'success-650': #385c1f,
|
|
82
|
+
'success-700': #344d24,
|
|
83
|
+
'success-750': #2e4022,
|
|
84
|
+
'success-800': #27341f,
|
|
85
|
+
'success-850': #20281a,
|
|
86
|
+
'success-900': #181d15,
|
|
87
|
+
'success-950': #10120e,
|
|
88
|
+
'warning-050': #fff1bd,
|
|
89
|
+
'warning-100': #ffe176,
|
|
90
|
+
'warning-150': #ffcf25,
|
|
91
|
+
'warning-200': #f4bf06,
|
|
92
|
+
'warning-250': #e3b205,
|
|
93
|
+
'warning-300': #d3a504,
|
|
94
|
+
'warning-350': #c29805,
|
|
95
|
+
'warning-400': #b28c03,
|
|
96
|
+
'warning-450': #a27f03,
|
|
97
|
+
'warning-500': #937303,
|
|
98
|
+
'warning-550': #836703,
|
|
99
|
+
'warning-600': #745b03,
|
|
100
|
+
'warning-650': #625019,
|
|
101
|
+
'warning-700': #524620,
|
|
102
|
+
'warning-750': #443b20,
|
|
103
|
+
'warning-800': #36301d,
|
|
104
|
+
'warning-850': #2a2619,
|
|
105
|
+
'warning-900': #1e1c13,
|
|
106
|
+
'warning-950': #12110c,
|
|
107
|
+
'error-050': #fceded,
|
|
108
|
+
'error-100': #fadbdb,
|
|
109
|
+
'error-150': #f7c9c9,
|
|
110
|
+
'error-200': #f5b7b7,
|
|
111
|
+
'error-250': #f2a4a4,
|
|
112
|
+
'error-300': #ef9191,
|
|
113
|
+
'error-350': #ec7d7d,
|
|
114
|
+
'error-400': #e96868,
|
|
115
|
+
'error-450': #e55050,
|
|
116
|
+
'error-500': #e13131,
|
|
117
|
+
'error-550': #d80000,
|
|
118
|
+
'error-600': #c00101,
|
|
119
|
+
'error-650': #9e2219,
|
|
120
|
+
'error-700': #802820,
|
|
121
|
+
'error-750': #662820,
|
|
122
|
+
'error-800': #4f231e,
|
|
123
|
+
'error-850': #3b1d19,
|
|
124
|
+
'error-900': #2a1614,
|
|
125
|
+
'error-950': #1a0e0c,
|
|
126
|
+
'red-050': #fdeded,
|
|
127
|
+
'red-100': #fadbdb,
|
|
128
|
+
'red-150': #f8c9c9,
|
|
129
|
+
'red-200': #f5b7b6,
|
|
130
|
+
'red-250': #f3a4a3,
|
|
131
|
+
'red-300': #f09190,
|
|
132
|
+
'red-350': #ee7c7b,
|
|
133
|
+
'red-400': #eb6665,
|
|
134
|
+
'red-450': #e74e4d,
|
|
135
|
+
'red-500': #d83f3d,
|
|
136
|
+
'red-550': #c23837,
|
|
137
|
+
'red-600': #ac3231,
|
|
138
|
+
'red-650': #8d3531,
|
|
139
|
+
'red-700': #73332f,
|
|
140
|
+
'red-750': #5b2f2b,
|
|
141
|
+
'red-800': #472826,
|
|
142
|
+
'red-850': #35211f,
|
|
143
|
+
'red-900': #251817,
|
|
144
|
+
'red-950': #160f0e,
|
|
145
|
+
'orange-050': #fdeee2,
|
|
146
|
+
'orange-100': #fcddc5,
|
|
147
|
+
'orange-150': #facba8,
|
|
148
|
+
'orange-200': #f8b98b,
|
|
149
|
+
'orange-250': #f6a76a,
|
|
150
|
+
'orange-300': #f4934b,
|
|
151
|
+
'orange-350': #f27e27,
|
|
152
|
+
'orange-400': #e76e12,
|
|
153
|
+
'orange-450': #d26411,
|
|
154
|
+
'orange-500': #be5b0f,
|
|
155
|
+
'orange-550': #aa510e,
|
|
156
|
+
'orange-600': #97480c,
|
|
157
|
+
'orange-650': #7e431d,
|
|
158
|
+
'orange-700': #673c22,
|
|
159
|
+
'orange-750': #533422,
|
|
160
|
+
'orange-800': #412c1f,
|
|
161
|
+
'orange-850': #31231b,
|
|
162
|
+
'orange-900': #221a14,
|
|
163
|
+
'orange-950': #15100c,
|
|
164
|
+
'brown-050': #f3f0ef,
|
|
165
|
+
'brown-100': #e7e1df,
|
|
166
|
+
'brown-150': #dcd2cf,
|
|
167
|
+
'brown-200': #d0c4bf,
|
|
168
|
+
'brown-250': #c5b6b0,
|
|
169
|
+
'brown-300': #baa7a1,
|
|
170
|
+
'brown-350': #af9992,
|
|
171
|
+
'brown-400': #a48b83,
|
|
172
|
+
'brown-450': #997e74,
|
|
173
|
+
'brown-500': #8f7065,
|
|
174
|
+
'brown-550': #846357,
|
|
175
|
+
'brown-600': #7a5649,
|
|
176
|
+
'brown-650': #684c42,
|
|
177
|
+
'brown-700': #57423c,
|
|
178
|
+
'brown-750': #463833,
|
|
179
|
+
'brown-800': #382e2a,
|
|
180
|
+
'brown-850': #2b2422,
|
|
181
|
+
'brown-900': #1f1b19,
|
|
182
|
+
'brown-950': #121010,
|
|
183
|
+
'yellow-050': #faf0d3,
|
|
184
|
+
'yellow-100': #f5e2a4,
|
|
185
|
+
'yellow-150': #f0d275,
|
|
186
|
+
'yellow-200': #ebc242,
|
|
187
|
+
'yellow-250': #e4b213,
|
|
188
|
+
'yellow-300': #d4a511,
|
|
189
|
+
'yellow-350': #c39810,
|
|
190
|
+
'yellow-400': #b38b0f,
|
|
191
|
+
'yellow-450': #a37f0d,
|
|
192
|
+
'yellow-500': #93730c,
|
|
193
|
+
'yellow-550': #84670b,
|
|
194
|
+
'yellow-600': #755b0a,
|
|
195
|
+
'yellow-650': #63501c,
|
|
196
|
+
'yellow-700': #534521,
|
|
197
|
+
'yellow-750': #443a21,
|
|
198
|
+
'yellow-800': #36301f,
|
|
199
|
+
'yellow-850': #29261a,
|
|
200
|
+
'yellow-900': #1d1c14,
|
|
201
|
+
'yellow-950': #12110c,
|
|
202
|
+
'green-050': #e2f6e5,
|
|
203
|
+
'green-100': #c5ecca,
|
|
204
|
+
'green-150': #a7e3af,
|
|
205
|
+
'green-200': #89d894,
|
|
206
|
+
'green-250': #67ce75,
|
|
207
|
+
'green-300': #4dc25d,
|
|
208
|
+
'green-350': #48b257,
|
|
209
|
+
'green-400': #41a44f,
|
|
210
|
+
'green-450': #3b9548,
|
|
211
|
+
'green-500': #368741,
|
|
212
|
+
'green-550': #30793a,
|
|
213
|
+
'green-600': #2b6b33,
|
|
214
|
+
'green-650': #2f5c34,
|
|
215
|
+
'green-700': #2e4e31,
|
|
216
|
+
'green-750': #2a412c,
|
|
217
|
+
'green-800': #253426,
|
|
218
|
+
'green-850': #1e281f,
|
|
219
|
+
'green-900': #171d17,
|
|
220
|
+
'green-950': #0f120f,
|
|
221
|
+
'blue-1-050': #ebf1ff,
|
|
222
|
+
'blue-1-100': #d6e3fe,
|
|
223
|
+
'blue-1-150': #c2d5fe,
|
|
224
|
+
'blue-1-200': #adc7fe,
|
|
225
|
+
'blue-1-250': #99b8fd,
|
|
226
|
+
'blue-1-300': #84aafd,
|
|
227
|
+
'blue-1-350': #6f9bfd,
|
|
228
|
+
'blue-1-400': #5a8dfb,
|
|
229
|
+
'blue-1-450': #437dfc,
|
|
230
|
+
'blue-1-500': #3d71e4,
|
|
231
|
+
'blue-1-550': #3665cc,
|
|
232
|
+
'blue-1-600': #305ab5,
|
|
233
|
+
'blue-1-650': #315093,
|
|
234
|
+
'blue-1-700': #2e4675,
|
|
235
|
+
'blue-1-750': #293b5e,
|
|
236
|
+
'blue-1-800': #243048,
|
|
237
|
+
'blue-1-850': #1e2635,
|
|
238
|
+
'blue-1-900': #171c25,
|
|
239
|
+
'blue-1-950': #0e1116,
|
|
240
|
+
'blue-2-050': #e2f4f9,
|
|
241
|
+
'blue-2-100': #c5e9f3,
|
|
242
|
+
'blue-2-150': #a7dded,
|
|
243
|
+
'blue-2-200': #88d1e6,
|
|
244
|
+
'blue-2-250': #68c5e0,
|
|
245
|
+
'blue-2-300': #48b8d9,
|
|
246
|
+
'blue-2-350': #3baaca,
|
|
247
|
+
'blue-2-400': #359cb9,
|
|
248
|
+
'blue-2-450': #318ea9,
|
|
249
|
+
'blue-2-500': #2c8199,
|
|
250
|
+
'blue-2-550': #277389,
|
|
251
|
+
'blue-2-600': #236679,
|
|
252
|
+
'blue-2-650': #2a5866,
|
|
253
|
+
'blue-2-700': #2a4b55,
|
|
254
|
+
'blue-2-750': #283f47,
|
|
255
|
+
'blue-2-800': #233337,
|
|
256
|
+
'blue-2-850': #1d272a,
|
|
257
|
+
'blue-2-900': #161c1e,
|
|
258
|
+
'blue-2-950': #0e1112,
|
|
259
|
+
'purple-050': #f6eeff,
|
|
260
|
+
'purple-100': #ecdcff,
|
|
261
|
+
'purple-150': #e3cbfe,
|
|
262
|
+
'purple-200': #dab9fe,
|
|
263
|
+
'purple-250': #d0a7fe,
|
|
264
|
+
'purple-300': #c795fe,
|
|
265
|
+
'purple-350': #bd83fd,
|
|
266
|
+
'purple-400': #b36ffd,
|
|
267
|
+
'purple-450': #a85bfd,
|
|
268
|
+
'purple-500': #9b4bf3,
|
|
269
|
+
'purple-550': #8b43da,
|
|
270
|
+
'purple-600': #7b3cc1,
|
|
271
|
+
'purple-650': #673c9b,
|
|
272
|
+
'purple-700': #56387d,
|
|
273
|
+
'purple-750': #463162,
|
|
274
|
+
'purple-800': #382a4a,
|
|
275
|
+
'purple-850': #2a2237,
|
|
276
|
+
'purple-900': #1e1926,
|
|
277
|
+
'purple-950': #121017,
|
|
278
|
+
'pink-050': #fcedf5,
|
|
279
|
+
'pink-100': #f9daea,
|
|
280
|
+
'pink-150': #f7c7e0,
|
|
281
|
+
'pink-200': #f4b4d5,
|
|
282
|
+
'pink-250': #f1a1ca,
|
|
283
|
+
'pink-300': #ee8cbf,
|
|
284
|
+
'pink-350': #ea77b3,
|
|
285
|
+
'pink-400': #e760a6,
|
|
286
|
+
'pink-450': #e24797,
|
|
287
|
+
'pink-500': #cd4089,
|
|
288
|
+
'pink-550': #b8397b,
|
|
289
|
+
'pink-600': #a3336d,
|
|
290
|
+
'pink-650': #86355e,
|
|
291
|
+
'pink-700': #6e334f,
|
|
292
|
+
'pink-750': #582e42,
|
|
293
|
+
'pink-800': #442834,
|
|
294
|
+
'pink-850': #332028,
|
|
295
|
+
'pink-900': #24181d,
|
|
296
|
+
'pink-950': #160f12,
|
|
297
|
+
'black-000': #00000000,
|
|
298
|
+
'black-050': #0000000d,
|
|
299
|
+
'black-100': #0000001a,
|
|
300
|
+
'black-150': #00000026,
|
|
301
|
+
'black-200': #00000033,
|
|
302
|
+
'black-250': #00000040,
|
|
303
|
+
'black-300': #0000004d,
|
|
304
|
+
'black-350': #00000059,
|
|
305
|
+
'black-400': #00000066,
|
|
306
|
+
'black-450': #00000073,
|
|
307
|
+
'black-500': #00000080,
|
|
308
|
+
'black-550': #0000008c,
|
|
309
|
+
'black-600': #00000099,
|
|
310
|
+
'black-650': #000000a6,
|
|
311
|
+
'black-700': #000000b3,
|
|
312
|
+
'black-750': #000000bf,
|
|
313
|
+
'black-800': #000000cc,
|
|
314
|
+
'black-850': #000000d9,
|
|
315
|
+
'black-900': #000000e6,
|
|
316
|
+
'black-950': #000000f2,
|
|
317
|
+
'white-000': #ffffff,
|
|
318
|
+
'white-050': #ffffff0d,
|
|
319
|
+
'white-100': #ffffff1a,
|
|
320
|
+
'white-150': #ffffff26,
|
|
321
|
+
'white-200': #ffffff33,
|
|
322
|
+
'white-250': #ffffff40,
|
|
323
|
+
'white-300': #ffffff4d,
|
|
324
|
+
'white-350': #ffffff59,
|
|
325
|
+
'white-400': #ffffff66,
|
|
326
|
+
'white-450': #ffffff73,
|
|
327
|
+
'white-500': #ffffff80,
|
|
328
|
+
'white-550': #ffffff8c,
|
|
329
|
+
'white-600': #ffffff99,
|
|
330
|
+
'white-650': #ffffffa6,
|
|
331
|
+
'white-700': #ffffffb3,
|
|
332
|
+
'white-750': #ffffffbf,
|
|
333
|
+
'white-800': #ffffffcc,
|
|
334
|
+
'white-850': #ffffffd9,
|
|
335
|
+
'white-900': #ffffffe6,
|
|
336
|
+
'white-950': #fffffff2,
|
|
337
|
+
),
|
|
338
|
+
'transitions': (
|
|
339
|
+
'ease-in': #{cubic-bezier(0.32, 0, 0.67, 0)},
|
|
340
|
+
'ease-out': #{cubic-bezier(0.33, 1, 0.68, 1)},
|
|
341
|
+
'ease-in-out': #{cubic-bezier(0.65, 0, 0.35, 1)},
|
|
342
|
+
'duration': 250ms,
|
|
343
|
+
),
|
|
344
|
+
'font': (
|
|
345
|
+
'sizes': (
|
|
346
|
+
'xs': 0.75rem,
|
|
347
|
+
'sm': 0.875rem,
|
|
348
|
+
'md': 1rem,
|
|
349
|
+
'lg': 1.125rem,
|
|
350
|
+
'ml': 0.938rem,
|
|
351
|
+
'xl': 1.25rem,
|
|
352
|
+
't': 0.6875rem,
|
|
353
|
+
's': 0.75rem,
|
|
354
|
+
'h1': 2rem,
|
|
355
|
+
'h2': 1.75rem,
|
|
356
|
+
'h3': 1.5rem,
|
|
357
|
+
'h4': 1.375rem,
|
|
358
|
+
'h5': 1.25rem,
|
|
359
|
+
'h6': 1.125rem,
|
|
360
|
+
'xl-alt': 5rem,
|
|
361
|
+
'lg-alt': 4.5rem,
|
|
362
|
+
'md-alt': 4rem,
|
|
363
|
+
'sm-alt': 3.5rem,
|
|
364
|
+
'xs-alt': 3rem,
|
|
365
|
+
),
|
|
366
|
+
'weights': (
|
|
367
|
+
'thin': 200,
|
|
368
|
+
'light': 300,
|
|
369
|
+
'regular': 400,
|
|
370
|
+
'medium': 500,
|
|
371
|
+
'bold': 600,
|
|
372
|
+
'extrabold': 700,
|
|
373
|
+
'black': 800,
|
|
374
|
+
),
|
|
375
|
+
'families': (
|
|
376
|
+
'base': #{\RobotoFlexVariable\,
|
|
377
|
+
sans-serif},
|
|
378
|
+
'accent': #{\RobotoFlexVariable\,
|
|
379
|
+
sans-serif},
|
|
380
|
+
),
|
|
381
|
+
),
|
|
382
|
+
'spacings': (
|
|
383
|
+
'l': 3rem,
|
|
384
|
+
'b': 1.625rem,
|
|
385
|
+
'm': 0.8125rem,
|
|
386
|
+
's': 1rem,
|
|
387
|
+
't': 0.5rem,
|
|
388
|
+
'st': 0.25rem,
|
|
389
|
+
'4xs': 0.125rem,
|
|
390
|
+
'xxxs': 0.25rem,
|
|
391
|
+
'xxs': 0.375rem,
|
|
392
|
+
'xs': 0.5rem,
|
|
393
|
+
'sm': 0.75rem,
|
|
394
|
+
'base': 1rem,
|
|
395
|
+
'md': 1.5rem,
|
|
396
|
+
'lg': 2rem,
|
|
397
|
+
'xl': 2.5rem,
|
|
398
|
+
'xxl': 3rem,
|
|
399
|
+
'xxxl': 3.5rem,
|
|
400
|
+
'4xl': 4rem,
|
|
401
|
+
'5xl': 4.5rem,
|
|
402
|
+
'6xl': 6rem,
|
|
403
|
+
'7xl': 7.5rem,
|
|
404
|
+
),
|
|
405
|
+
'breakpoints': (
|
|
406
|
+
'xs': 0,
|
|
407
|
+
'sm': 576px,
|
|
408
|
+
'md': 768px,
|
|
409
|
+
'lg': 992px,
|
|
410
|
+
'xl': 1200px,
|
|
411
|
+
'xxl': 1400px,
|
|
412
|
+
),
|
|
413
|
+
),
|
|
414
|
+
'contextuals': (
|
|
415
|
+
'background': (
|
|
416
|
+
'surface': (
|
|
417
|
+
'primary': #ffffff,
|
|
418
|
+
'secondary': #ffffff,
|
|
419
|
+
'tertiary': #f7f8f8,
|
|
420
|
+
),
|
|
421
|
+
'semantic': (
|
|
422
|
+
'brand': (
|
|
423
|
+
'primary': #f72c30,
|
|
424
|
+
'primary-hover': #d60f29,
|
|
425
|
+
'secondary': #ffcad1,
|
|
426
|
+
'secondary-hover': #f8b0b4,
|
|
427
|
+
'tertiary': #fff0f1,
|
|
428
|
+
'tertiary-hover': #ffcad1,
|
|
429
|
+
),
|
|
430
|
+
'neutral': (
|
|
431
|
+
'primary': #686b6f,
|
|
432
|
+
'primary-hover': #505356,
|
|
433
|
+
'secondary': #e1e2e5,
|
|
434
|
+
'secondary-hover': #d2d4d8,
|
|
435
|
+
'tertiary': #f0f1f2,
|
|
436
|
+
'tertiary-hover': #e1e2e5,
|
|
437
|
+
),
|
|
438
|
+
'contextual': (
|
|
439
|
+
'primary': #0000000d,
|
|
440
|
+
'primary-hover': #0000001a,
|
|
441
|
+
),
|
|
442
|
+
'info': (
|
|
443
|
+
'primary': #1167d4,
|
|
444
|
+
'primary-hover': #1a509f,
|
|
445
|
+
'secondary': #d5e4f7,
|
|
446
|
+
'secondary-hover': #c0d6f4,
|
|
447
|
+
'tertiary': #eaf1fb,
|
|
448
|
+
'tertiary-hover': #d5e4f7,
|
|
449
|
+
),
|
|
450
|
+
'success': (
|
|
451
|
+
'primary': #427816,
|
|
452
|
+
'primary-hover': #385c1f,
|
|
453
|
+
'secondary': #c8eea8,
|
|
454
|
+
'secondary-hover': #aae579,
|
|
455
|
+
'tertiary': #e4f7d4,
|
|
456
|
+
'tertiary-hover': #c8eea8,
|
|
457
|
+
),
|
|
458
|
+
'warning': (
|
|
459
|
+
'primary': #836703,
|
|
460
|
+
'primary-hover': #625019,
|
|
461
|
+
'secondary': #ffe176,
|
|
462
|
+
'secondary-hover': #ffcf25,
|
|
463
|
+
'tertiary': #fff1bd,
|
|
464
|
+
'tertiary-hover': #ffe176,
|
|
465
|
+
),
|
|
466
|
+
'error': (
|
|
467
|
+
'primary': #d80000,
|
|
468
|
+
'primary-hover': #9e2219,
|
|
469
|
+
'secondary': #fadbdb,
|
|
470
|
+
'secondary-hover': #f7c9c9,
|
|
471
|
+
'tertiary': #fceded,
|
|
472
|
+
'tertiary-hover': #fadbdb,
|
|
473
|
+
),
|
|
474
|
+
'disabled': (
|
|
475
|
+
'primary': #e1e2e5,
|
|
476
|
+
'secondary': #f0f1f2,
|
|
477
|
+
),
|
|
478
|
+
),
|
|
479
|
+
'palette': (
|
|
480
|
+
'brand': (
|
|
481
|
+
'primary': #f63237,
|
|
482
|
+
'secondary': #ed575d,
|
|
483
|
+
'tertiary': #f8b0b4,
|
|
484
|
+
),
|
|
485
|
+
'red': (
|
|
486
|
+
'primary': #d83f3d,
|
|
487
|
+
'secondary': #ee7c7b,
|
|
488
|
+
'tertiary': #f8c9c9,
|
|
489
|
+
),
|
|
490
|
+
'orange': (
|
|
491
|
+
'primary': #be5b0f,
|
|
492
|
+
'secondary': #f27e27,
|
|
493
|
+
'tertiary': #facba8,
|
|
494
|
+
),
|
|
495
|
+
'brown': (
|
|
496
|
+
'primary': #8f7065,
|
|
497
|
+
'secondary': #af9992,
|
|
498
|
+
'tertiary': #dcd2cf,
|
|
499
|
+
),
|
|
500
|
+
'yellow': (
|
|
501
|
+
'primary': #93730c,
|
|
502
|
+
'secondary': #c39810,
|
|
503
|
+
'tertiary': #f0d275,
|
|
504
|
+
),
|
|
505
|
+
'green': (
|
|
506
|
+
'primary': #368741,
|
|
507
|
+
'secondary': #48b257,
|
|
508
|
+
'tertiary': #a7e3af,
|
|
509
|
+
),
|
|
510
|
+
'blue-1': (
|
|
511
|
+
'primary': #3d71e4,
|
|
512
|
+
'secondary': #6f9bfd,
|
|
513
|
+
'tertiary': #c2d5fe,
|
|
514
|
+
),
|
|
515
|
+
'blue-2': (
|
|
516
|
+
'primary': #2c8199,
|
|
517
|
+
'secondary': #3baaca,
|
|
518
|
+
'tertiary': #a7dded,
|
|
519
|
+
),
|
|
520
|
+
'purple': (
|
|
521
|
+
'primary': #9b4bf3,
|
|
522
|
+
'secondary': #bd83fd,
|
|
523
|
+
'tertiary': #e3cbfe,
|
|
524
|
+
),
|
|
525
|
+
'pink': (
|
|
526
|
+
'primary': #cd4089,
|
|
527
|
+
'secondary': #ea77b3,
|
|
528
|
+
'tertiary': #f7c7e0,
|
|
529
|
+
),
|
|
530
|
+
'gray': (
|
|
531
|
+
'primary': #74777c,
|
|
532
|
+
'secondary': #999ea5,
|
|
533
|
+
'tertiary': #d2d4d8,
|
|
534
|
+
),
|
|
535
|
+
),
|
|
536
|
+
'text': (
|
|
537
|
+
'primary': #0000000d,
|
|
538
|
+
),
|
|
539
|
+
),
|
|
540
|
+
'content': (
|
|
541
|
+
'logo1': #377fdb,
|
|
542
|
+
'logo2': #377fdb,
|
|
543
|
+
'semantic': (
|
|
544
|
+
'brand': (
|
|
545
|
+
'primary': #c90022,
|
|
546
|
+
'secondary': #e81f2f,
|
|
547
|
+
'tertiary': #5c5f63,
|
|
548
|
+
'on-brand': #ffffff,
|
|
549
|
+
),
|
|
550
|
+
'neutral': (
|
|
551
|
+
'primary': #252627,
|
|
552
|
+
'secondary': #5c5f63,
|
|
553
|
+
'tertiary': #74777c,
|
|
554
|
+
'on-neutral': #f0f1f2,
|
|
555
|
+
),
|
|
556
|
+
'contextual': (
|
|
557
|
+
'primary': #fffffff2,
|
|
558
|
+
),
|
|
559
|
+
'info': (
|
|
560
|
+
'primary': #20467f,
|
|
561
|
+
'secondary': #0659c5,
|
|
562
|
+
'tertiary': #2976d8,
|
|
563
|
+
'on-info': #eaf1fb,
|
|
564
|
+
),
|
|
565
|
+
'success': (
|
|
566
|
+
'primary': #344d24,
|
|
567
|
+
'secondary': #3a6a14,
|
|
568
|
+
'tertiary': #4b851a,
|
|
569
|
+
'on-success': #e4f7d4,
|
|
570
|
+
),
|
|
571
|
+
'warning': (
|
|
572
|
+
'primary': #524620,
|
|
573
|
+
'secondary': #745b03,
|
|
574
|
+
'tertiary': #937303,
|
|
575
|
+
'on-warning': #fff1bd,
|
|
576
|
+
),
|
|
577
|
+
'error': (
|
|
578
|
+
'primary': #802820,
|
|
579
|
+
'secondary': #c00101,
|
|
580
|
+
'tertiary': #e13131,
|
|
581
|
+
'on-error': #fceded,
|
|
582
|
+
),
|
|
583
|
+
'disabled': (
|
|
584
|
+
'primary': #a7acb2,
|
|
585
|
+
'secondary': #ffffff80,
|
|
586
|
+
),
|
|
587
|
+
),
|
|
588
|
+
'palette': (
|
|
589
|
+
'brand': (
|
|
590
|
+
'primary': #f63237,
|
|
591
|
+
'secondary': #ed575d,
|
|
592
|
+
'tertiary': #f8b0b4,
|
|
593
|
+
),
|
|
594
|
+
'red': (
|
|
595
|
+
'primary': #d83f3d,
|
|
596
|
+
'secondary': #ee7c7b,
|
|
597
|
+
'tertiary': #f8c9c9,
|
|
598
|
+
),
|
|
599
|
+
'orange': (
|
|
600
|
+
'primary': #be5b0f,
|
|
601
|
+
'secondary': #f27e27,
|
|
602
|
+
'tertiary': #facba8,
|
|
603
|
+
),
|
|
604
|
+
'brown': (
|
|
605
|
+
'primary': #8f7065,
|
|
606
|
+
'secondary': #af9992,
|
|
607
|
+
'tertiary': #dcd2cf,
|
|
608
|
+
),
|
|
609
|
+
'yellow': (
|
|
610
|
+
'primary': #93730c,
|
|
611
|
+
'secondary': #c39810,
|
|
612
|
+
'tertiary': #f0d275,
|
|
613
|
+
),
|
|
614
|
+
'green': (
|
|
615
|
+
'primary': #368741,
|
|
616
|
+
'secondary': #48b257,
|
|
617
|
+
'tertiary': #a7e3af,
|
|
618
|
+
),
|
|
619
|
+
'blue-1': (
|
|
620
|
+
'primary': #3d71e4,
|
|
621
|
+
'secondary': #6f9bfd,
|
|
622
|
+
'tertiary': #c2d5fe,
|
|
623
|
+
),
|
|
624
|
+
'blue-2': (
|
|
625
|
+
'primary': #2c8199,
|
|
626
|
+
'secondary': #3baaca,
|
|
627
|
+
'tertiary': #a7dded,
|
|
628
|
+
),
|
|
629
|
+
'purple': (
|
|
630
|
+
'primary': #9b4bf3,
|
|
631
|
+
'secondary': #bd83fd,
|
|
632
|
+
'tertiary': #e3cbfe,
|
|
633
|
+
),
|
|
634
|
+
'pink': (
|
|
635
|
+
'primary': #cd4089,
|
|
636
|
+
'secondary': #ea77b3,
|
|
637
|
+
'tertiary': #f7c7e0,
|
|
638
|
+
),
|
|
639
|
+
'gray': (
|
|
640
|
+
'primary': #74777c,
|
|
641
|
+
'secondary': #999ea5,
|
|
642
|
+
'tertiary': #d2d4d8,
|
|
643
|
+
),
|
|
644
|
+
),
|
|
645
|
+
),
|
|
646
|
+
'border': (
|
|
647
|
+
'surface': (
|
|
648
|
+
'primary': #e1e2e5,
|
|
649
|
+
),
|
|
650
|
+
'semantic': (
|
|
651
|
+
'brand': (
|
|
652
|
+
'primary': #f72c30,
|
|
653
|
+
'secondary': #e86a6f,
|
|
654
|
+
'tertiary': #f8b0b4,
|
|
655
|
+
),
|
|
656
|
+
'contextual': (
|
|
657
|
+
'primary': #ffffff33,
|
|
658
|
+
),
|
|
659
|
+
'neutral': (
|
|
660
|
+
'primary': #686b6f,
|
|
661
|
+
'secondary': #a7acb2,
|
|
662
|
+
'tertiary': #d2d4d8,
|
|
663
|
+
),
|
|
664
|
+
'info': (
|
|
665
|
+
'primary': #1167d4,
|
|
666
|
+
'secondary': #80aee8,
|
|
667
|
+
'tertiary': #c0d6f4,
|
|
668
|
+
),
|
|
669
|
+
'success': (
|
|
670
|
+
'primary': #427816,
|
|
671
|
+
'secondary': #6ac024,
|
|
672
|
+
'tertiary': #aae579,
|
|
673
|
+
),
|
|
674
|
+
'warning': (
|
|
675
|
+
'primary': #836703,
|
|
676
|
+
'secondary': #d3a504,
|
|
677
|
+
'tertiary': #ffcf25,
|
|
678
|
+
),
|
|
679
|
+
'error': (
|
|
680
|
+
'primary': #d80000,
|
|
681
|
+
'secondary': #ef9191,
|
|
682
|
+
'tertiary': #f7c9c9,
|
|
683
|
+
),
|
|
684
|
+
'disabled': (
|
|
685
|
+
'primary': #e1e2e5,
|
|
686
|
+
),
|
|
687
|
+
),
|
|
688
|
+
'palette': (
|
|
689
|
+
'brand': (
|
|
690
|
+
'primary': #f63237,
|
|
691
|
+
'secondary': #ed575d,
|
|
692
|
+
'tertiary': #f8b0b4,
|
|
693
|
+
),
|
|
694
|
+
'red': (
|
|
695
|
+
'primary': #d83f3d,
|
|
696
|
+
'secondary': #ee7c7b,
|
|
697
|
+
'tertiary': #f8c9c9,
|
|
698
|
+
),
|
|
699
|
+
'orange': (
|
|
700
|
+
'primary': #be5b0f,
|
|
701
|
+
'secondary': #f27e27,
|
|
702
|
+
'tertiary': #facba8,
|
|
703
|
+
),
|
|
704
|
+
'brown': (
|
|
705
|
+
'primary': #8f7065,
|
|
706
|
+
'secondary': #af9992,
|
|
707
|
+
'tertiary': #dcd2cf,
|
|
708
|
+
),
|
|
709
|
+
'yellow': (
|
|
710
|
+
'primary': #93730c,
|
|
711
|
+
'secondary': #c39810,
|
|
712
|
+
'tertiary': #f0d275,
|
|
713
|
+
),
|
|
714
|
+
'green': (
|
|
715
|
+
'primary': #368741,
|
|
716
|
+
'secondary': #48b257,
|
|
717
|
+
'tertiary': #a7e3af,
|
|
718
|
+
),
|
|
719
|
+
'blue-1': (
|
|
720
|
+
'primary': #3d71e4,
|
|
721
|
+
'secondary': #6f9bfd,
|
|
722
|
+
'tertiary': #c2d5fe,
|
|
723
|
+
),
|
|
724
|
+
'blue-2': (
|
|
725
|
+
'primary': #2c8199,
|
|
726
|
+
'secondary': #3baaca,
|
|
727
|
+
'tertiary': #a7dded,
|
|
728
|
+
),
|
|
729
|
+
'purple': (
|
|
730
|
+
'primary': #9b4bf3,
|
|
731
|
+
'secondary': #bd83fd,
|
|
732
|
+
'tertiary': #e3cbfe,
|
|
733
|
+
),
|
|
734
|
+
'pink': (
|
|
735
|
+
'primary': #cd4089,
|
|
736
|
+
'secondary': #ea77b3,
|
|
737
|
+
'tertiary': #f7c7e0,
|
|
738
|
+
),
|
|
739
|
+
'gray': (
|
|
740
|
+
'primary': #74777c,
|
|
741
|
+
'secondary': #999ea5,
|
|
742
|
+
'tertiary': #d2d4d8,
|
|
743
|
+
),
|
|
744
|
+
),
|
|
745
|
+
),
|
|
746
|
+
),
|
|
747
|
+
'components': (
|
|
748
|
+
'tabs': (),
|
|
749
|
+
'button': (
|
|
750
|
+
'font-family': Montserrat,
|
|
751
|
+
),
|
|
752
|
+
'dashboardListAvatar': (
|
|
753
|
+
'saturation': 30,
|
|
754
|
+
'lightness': 55,
|
|
755
|
+
),
|
|
756
|
+
),
|
|
3
757
|
'theme': (
|
|
758
|
+
'font': (
|
|
759
|
+
'families': (
|
|
760
|
+
'base': Hind,
|
|
761
|
+
'accent': Montserrat,
|
|
762
|
+
),
|
|
763
|
+
),
|
|
4
764
|
'colors': (
|
|
5
|
-
'secondary-text': #555f6b,
|
|
6
|
-
'secondary-100': #eff8ff,
|
|
7
|
-
'secondary-200': #eaf3fd,
|
|
8
|
-
'secondary-300': #e2ebf5,
|
|
9
|
-
'secondary-400': #c0c9d3,
|
|
10
|
-
'secondary-500': #a3abb4,
|
|
11
|
-
'secondary-600': #79818a,
|
|
12
|
-
'secondary-700': #656c75,
|
|
13
|
-
'secondary-800': #454d55,
|
|
14
|
-
'secondary-900': #242b32,
|
|
15
|
-
'info-text': #ffffff,
|
|
16
|
-
'info-100': #ebf2fc,
|
|
17
|
-
'info-200': #8cb5ea,
|
|
18
|
-
'info-300': #5894e1,
|
|
19
|
-
'info-400': #377fdb,
|
|
20
|
-
'info-500': #055fd2,
|
|
21
|
-
'info-600': #0556bf,
|
|
22
|
-
'info-700': #044395,
|
|
23
|
-
'info-800': #033474,
|
|
24
|
-
'info-900': #022858,
|
|
25
|
-
'greyscale-100': #fafafb,
|
|
26
|
-
'greyscale-200': #f3f4f4,
|
|
27
|
-
'greyscale-300': #e7e8ea,
|
|
28
|
-
'greyscale-400': #c2c6ca,
|
|
29
|
-
'greyscale-500': #9ea3aa,
|
|
30
|
-
'greyscale-600': #79818a,
|
|
31
|
-
'greyscale-700': #555f6b,
|
|
32
|
-
'greyscale-800': #303c4b,
|
|
33
|
-
'greyscale-900': #0c1a2b,
|
|
34
|
-
'greyscale-000': #ffffff,
|
|
35
765
|
'primary-100': #ffcad1,
|
|
36
766
|
'primary-200': #f19597,
|
|
37
767
|
'primary-300': #e86a6f,
|
|
@@ -41,37 +771,15 @@ $themes: (
|
|
|
41
771
|
'primary-700': #d60f29,
|
|
42
772
|
'primary-800': #c90022,
|
|
43
773
|
'primary-900': #bb0014,
|
|
44
|
-
'
|
|
45
|
-
'
|
|
46
|
-
'
|
|
47
|
-
'
|
|
48
|
-
'
|
|
49
|
-
'
|
|
50
|
-
'
|
|
51
|
-
'
|
|
52
|
-
'
|
|
53
|
-
'warning-100': #fff8cd,
|
|
54
|
-
'warning-200': #ffef9b,
|
|
55
|
-
'warning-300': #ffe469,
|
|
56
|
-
'warning-400': #ffda43,
|
|
57
|
-
'warning-500': #ffc805,
|
|
58
|
-
'warning-600': #dba603,
|
|
59
|
-
'warning-700': #b78702,
|
|
60
|
-
'warning-800': #936901,
|
|
61
|
-
'warning-900': #7a5400,
|
|
62
|
-
'danger-100': #f4b0b0,
|
|
63
|
-
'danger-200': #ee8a8a,
|
|
64
|
-
'danger-300': #e65454,
|
|
65
|
-
'danger-400': #e13333,
|
|
66
|
-
'danger-500': #da0000,
|
|
67
|
-
'danger-600': #c60000,
|
|
68
|
-
'danger-700': #9b0000,
|
|
69
|
-
'danger-800': #780000,
|
|
70
|
-
'danger-900': #5c0000,
|
|
71
|
-
'primary-text': #ffffff,
|
|
72
|
-
'success-text': #ffffff,
|
|
73
|
-
'warning-text': #ffffff,
|
|
74
|
-
'danger-text': #ffffff,
|
|
774
|
+
'secondary-100': #eff8ff,
|
|
775
|
+
'secondary-200': #eaf3fd,
|
|
776
|
+
'secondary-300': #e2ebf5,
|
|
777
|
+
'secondary-400': #c0c9d3,
|
|
778
|
+
'secondary-500': #a3abb4,
|
|
779
|
+
'secondary-600': #79818a,
|
|
780
|
+
'secondary-700': #656c75,
|
|
781
|
+
'secondary-800': #454d55,
|
|
782
|
+
'secondary-900': #242b32,
|
|
75
783
|
'black': #090909,
|
|
76
784
|
'dark-grey': #232323,
|
|
77
785
|
'charcoal': #29303b,
|
|
@@ -92,18 +800,373 @@ $themes: (
|
|
|
92
800
|
'midnightblue': #141b2c,
|
|
93
801
|
'mantis': #76ce68,
|
|
94
802
|
'mantis-darken': #006908,
|
|
803
|
+
'warning-500': #937303,
|
|
804
|
+
),
|
|
805
|
+
),
|
|
806
|
+
),
|
|
807
|
+
'dark': (
|
|
808
|
+
'globals': (
|
|
809
|
+
'colors': (
|
|
810
|
+
'logo-1': #377fdb,
|
|
811
|
+
'logo-2': #377fdb,
|
|
812
|
+
'logo-1-dark': #95abff,
|
|
813
|
+
'logo-2-dark': #95abff,
|
|
814
|
+
'brand-050': #eaf1fb,
|
|
815
|
+
'brand-100': #d5e4f7,
|
|
816
|
+
'brand-150': #c0d6f4,
|
|
817
|
+
'brand-200': #abc9f0,
|
|
818
|
+
'brand-250': #96bcec,
|
|
819
|
+
'brand-300': #80aee8,
|
|
820
|
+
'brand-350': #6ca0e4,
|
|
821
|
+
'brand-400': #5693e0,
|
|
822
|
+
'brand-450': #4085dc,
|
|
823
|
+
'brand-500': #2976d8,
|
|
824
|
+
'brand-550': #1167d4,
|
|
825
|
+
'brand-600': #0659c5,
|
|
826
|
+
'brand-650': #1a509f,
|
|
827
|
+
'brand-700': #20467f,
|
|
828
|
+
'brand-750': #203c63,
|
|
829
|
+
'brand-800': #1d314c,
|
|
830
|
+
'brand-850': #1a2638,
|
|
831
|
+
'brand-900': #141c28,
|
|
832
|
+
'brand-950': #0c1117,
|
|
833
|
+
'gray-000': #ffffff,
|
|
834
|
+
'gray-025': #f7f8f8,
|
|
835
|
+
'gray-050': #f0f1f2,
|
|
836
|
+
'gray-100': #e1e2e5,
|
|
837
|
+
'gray-150': #d2d4d8,
|
|
838
|
+
'gray-200': #c4c7cb,
|
|
839
|
+
'gray-250': #b5b9be,
|
|
840
|
+
'gray-300': #a7acb2,
|
|
841
|
+
'gray-350': #999ea5,
|
|
842
|
+
'gray-400': #8d9197,
|
|
843
|
+
'gray-450': #80848a,
|
|
844
|
+
'gray-500': #74777c,
|
|
845
|
+
'gray-550': #686b6f,
|
|
846
|
+
'gray-600': #5c5f63,
|
|
847
|
+
'gray-650': #505356,
|
|
848
|
+
'gray-700': #45474a,
|
|
849
|
+
'gray-750': #3a3b3e,
|
|
850
|
+
'gray-800': #2f3033,
|
|
851
|
+
'gray-850': #252627,
|
|
852
|
+
'gray-900': #1b1c1d,
|
|
853
|
+
'gray-950': #101112,
|
|
854
|
+
'gray-1000': #000000,
|
|
855
|
+
'info-050': #eaf1fb,
|
|
856
|
+
'info-100': #d5e4f7,
|
|
857
|
+
'info-150': #c0d6f4,
|
|
858
|
+
'info-200': #abc9f0,
|
|
859
|
+
'info-250': #96bcec,
|
|
860
|
+
'info-300': #80aee8,
|
|
861
|
+
'info-350': #6ca0e4,
|
|
862
|
+
'info-400': #5693e0,
|
|
863
|
+
'info-450': #4085dc,
|
|
864
|
+
'info-500': #2976d8,
|
|
865
|
+
'info-550': #1167d4,
|
|
866
|
+
'info-600': #0659c5,
|
|
867
|
+
'info-650': #1a509f,
|
|
868
|
+
'info-700': #20467f,
|
|
869
|
+
'info-750': #203c63,
|
|
870
|
+
'info-800': #1d314c,
|
|
871
|
+
'info-850': #1a2638,
|
|
872
|
+
'info-900': #141c28,
|
|
873
|
+
'info-950': #0c1117,
|
|
874
|
+
'success-050': #e4f7d4,
|
|
875
|
+
'success-100': #c8eea8,
|
|
876
|
+
'success-150': #aae579,
|
|
877
|
+
'success-200': #89dc45,
|
|
878
|
+
'success-250': #72cf27,
|
|
879
|
+
'success-300': #6ac024,
|
|
880
|
+
'success-350': #61b121,
|
|
881
|
+
'success-400': #59a21e,
|
|
882
|
+
'success-450': #51941c,
|
|
883
|
+
'success-500': #4b851a,
|
|
884
|
+
'success-550': #427816,
|
|
885
|
+
'success-600': #3a6a14,
|
|
886
|
+
'success-650': #385c1f,
|
|
887
|
+
'success-700': #344d24,
|
|
888
|
+
'success-750': #2e4022,
|
|
889
|
+
'success-800': #27341f,
|
|
890
|
+
'success-850': #20281a,
|
|
891
|
+
'success-900': #181d15,
|
|
892
|
+
'success-950': #10120e,
|
|
893
|
+
'warning-050': #fff1bd,
|
|
894
|
+
'warning-100': #ffe176,
|
|
895
|
+
'warning-150': #ffcf25,
|
|
896
|
+
'warning-200': #f4bf06,
|
|
897
|
+
'warning-250': #e3b205,
|
|
898
|
+
'warning-300': #d3a504,
|
|
899
|
+
'warning-350': #c29805,
|
|
900
|
+
'warning-400': #b28c03,
|
|
901
|
+
'warning-450': #a27f03,
|
|
902
|
+
'warning-500': #937303,
|
|
903
|
+
'warning-550': #836703,
|
|
904
|
+
'warning-600': #745b03,
|
|
905
|
+
'warning-650': #625019,
|
|
906
|
+
'warning-700': #524620,
|
|
907
|
+
'warning-750': #443b20,
|
|
908
|
+
'warning-800': #36301d,
|
|
909
|
+
'warning-850': #2a2619,
|
|
910
|
+
'warning-900': #1e1c13,
|
|
911
|
+
'warning-950': #12110c,
|
|
912
|
+
'error-050': #fceded,
|
|
913
|
+
'error-100': #fadbdb,
|
|
914
|
+
'error-150': #f7c9c9,
|
|
915
|
+
'error-200': #f5b7b7,
|
|
916
|
+
'error-250': #f2a4a4,
|
|
917
|
+
'error-300': #ef9191,
|
|
918
|
+
'error-350': #ec7d7d,
|
|
919
|
+
'error-400': #e96868,
|
|
920
|
+
'error-450': #e55050,
|
|
921
|
+
'error-500': #e13131,
|
|
922
|
+
'error-550': #d80000,
|
|
923
|
+
'error-600': #c00101,
|
|
924
|
+
'error-650': #9e2219,
|
|
925
|
+
'error-700': #802820,
|
|
926
|
+
'error-750': #662820,
|
|
927
|
+
'error-800': #4f231e,
|
|
928
|
+
'error-850': #3b1d19,
|
|
929
|
+
'error-900': #2a1614,
|
|
930
|
+
'error-950': #1a0e0c,
|
|
931
|
+
'red-050': #fdeded,
|
|
932
|
+
'red-100': #fadbdb,
|
|
933
|
+
'red-150': #f8c9c9,
|
|
934
|
+
'red-200': #f5b7b6,
|
|
935
|
+
'red-250': #f3a4a3,
|
|
936
|
+
'red-300': #f09190,
|
|
937
|
+
'red-350': #ee7c7b,
|
|
938
|
+
'red-400': #eb6665,
|
|
939
|
+
'red-450': #e74e4d,
|
|
940
|
+
'red-500': #d83f3d,
|
|
941
|
+
'red-550': #c23837,
|
|
942
|
+
'red-600': #ac3231,
|
|
943
|
+
'red-650': #8d3531,
|
|
944
|
+
'red-700': #73332f,
|
|
945
|
+
'red-750': #5b2f2b,
|
|
946
|
+
'red-800': #472826,
|
|
947
|
+
'red-850': #35211f,
|
|
948
|
+
'red-900': #251817,
|
|
949
|
+
'red-950': #160f0e,
|
|
950
|
+
'orange-050': #fdeee2,
|
|
951
|
+
'orange-100': #fcddc5,
|
|
952
|
+
'orange-150': #facba8,
|
|
953
|
+
'orange-200': #f8b98b,
|
|
954
|
+
'orange-250': #f6a76a,
|
|
955
|
+
'orange-300': #f4934b,
|
|
956
|
+
'orange-350': #f27e27,
|
|
957
|
+
'orange-400': #e76e12,
|
|
958
|
+
'orange-450': #d26411,
|
|
959
|
+
'orange-500': #be5b0f,
|
|
960
|
+
'orange-550': #aa510e,
|
|
961
|
+
'orange-600': #97480c,
|
|
962
|
+
'orange-650': #7e431d,
|
|
963
|
+
'orange-700': #673c22,
|
|
964
|
+
'orange-750': #533422,
|
|
965
|
+
'orange-800': #412c1f,
|
|
966
|
+
'orange-850': #31231b,
|
|
967
|
+
'orange-900': #221a14,
|
|
968
|
+
'orange-950': #15100c,
|
|
969
|
+
'brown-050': #f3f0ef,
|
|
970
|
+
'brown-100': #e7e1df,
|
|
971
|
+
'brown-150': #dcd2cf,
|
|
972
|
+
'brown-200': #d0c4bf,
|
|
973
|
+
'brown-250': #c5b6b0,
|
|
974
|
+
'brown-300': #baa7a1,
|
|
975
|
+
'brown-350': #af9992,
|
|
976
|
+
'brown-400': #a48b83,
|
|
977
|
+
'brown-450': #997e74,
|
|
978
|
+
'brown-500': #8f7065,
|
|
979
|
+
'brown-550': #846357,
|
|
980
|
+
'brown-600': #7a5649,
|
|
981
|
+
'brown-650': #684c42,
|
|
982
|
+
'brown-700': #57423c,
|
|
983
|
+
'brown-750': #463833,
|
|
984
|
+
'brown-800': #382e2a,
|
|
985
|
+
'brown-850': #2b2422,
|
|
986
|
+
'brown-900': #1f1b19,
|
|
987
|
+
'brown-950': #121010,
|
|
988
|
+
'yellow-050': #faf0d3,
|
|
989
|
+
'yellow-100': #f5e2a4,
|
|
990
|
+
'yellow-150': #f0d275,
|
|
991
|
+
'yellow-200': #ebc242,
|
|
992
|
+
'yellow-250': #e4b213,
|
|
993
|
+
'yellow-300': #d4a511,
|
|
994
|
+
'yellow-350': #c39810,
|
|
995
|
+
'yellow-400': #b38b0f,
|
|
996
|
+
'yellow-450': #a37f0d,
|
|
997
|
+
'yellow-500': #93730c,
|
|
998
|
+
'yellow-550': #84670b,
|
|
999
|
+
'yellow-600': #755b0a,
|
|
1000
|
+
'yellow-650': #63501c,
|
|
1001
|
+
'yellow-700': #534521,
|
|
1002
|
+
'yellow-750': #443a21,
|
|
1003
|
+
'yellow-800': #36301f,
|
|
1004
|
+
'yellow-850': #29261a,
|
|
1005
|
+
'yellow-900': #1d1c14,
|
|
1006
|
+
'yellow-950': #12110c,
|
|
1007
|
+
'green-050': #e2f6e5,
|
|
1008
|
+
'green-100': #c5ecca,
|
|
1009
|
+
'green-150': #a7e3af,
|
|
1010
|
+
'green-200': #89d894,
|
|
1011
|
+
'green-250': #67ce75,
|
|
1012
|
+
'green-300': #4dc25d,
|
|
1013
|
+
'green-350': #48b257,
|
|
1014
|
+
'green-400': #41a44f,
|
|
1015
|
+
'green-450': #3b9548,
|
|
1016
|
+
'green-500': #368741,
|
|
1017
|
+
'green-550': #30793a,
|
|
1018
|
+
'green-600': #2b6b33,
|
|
1019
|
+
'green-650': #2f5c34,
|
|
1020
|
+
'green-700': #2e4e31,
|
|
1021
|
+
'green-750': #2a412c,
|
|
1022
|
+
'green-800': #253426,
|
|
1023
|
+
'green-850': #1e281f,
|
|
1024
|
+
'green-900': #171d17,
|
|
1025
|
+
'green-950': #0f120f,
|
|
1026
|
+
'blue-1-050': #ebf1ff,
|
|
1027
|
+
'blue-1-100': #d6e3fe,
|
|
1028
|
+
'blue-1-150': #c2d5fe,
|
|
1029
|
+
'blue-1-200': #adc7fe,
|
|
1030
|
+
'blue-1-250': #99b8fd,
|
|
1031
|
+
'blue-1-300': #84aafd,
|
|
1032
|
+
'blue-1-350': #6f9bfd,
|
|
1033
|
+
'blue-1-400': #5a8dfb,
|
|
1034
|
+
'blue-1-450': #437dfc,
|
|
1035
|
+
'blue-1-500': #3d71e4,
|
|
1036
|
+
'blue-1-550': #3665cc,
|
|
1037
|
+
'blue-1-600': #305ab5,
|
|
1038
|
+
'blue-1-650': #315093,
|
|
1039
|
+
'blue-1-700': #2e4675,
|
|
1040
|
+
'blue-1-750': #293b5e,
|
|
1041
|
+
'blue-1-800': #243048,
|
|
1042
|
+
'blue-1-850': #1e2635,
|
|
1043
|
+
'blue-1-900': #171c25,
|
|
1044
|
+
'blue-1-950': #0e1116,
|
|
1045
|
+
'blue-2-050': #e2f4f9,
|
|
1046
|
+
'blue-2-100': #c5e9f3,
|
|
1047
|
+
'blue-2-150': #a7dded,
|
|
1048
|
+
'blue-2-200': #88d1e6,
|
|
1049
|
+
'blue-2-250': #68c5e0,
|
|
1050
|
+
'blue-2-300': #48b8d9,
|
|
1051
|
+
'blue-2-350': #3baaca,
|
|
1052
|
+
'blue-2-400': #359cb9,
|
|
1053
|
+
'blue-2-450': #318ea9,
|
|
1054
|
+
'blue-2-500': #2c8199,
|
|
1055
|
+
'blue-2-550': #277389,
|
|
1056
|
+
'blue-2-600': #236679,
|
|
1057
|
+
'blue-2-650': #2a5866,
|
|
1058
|
+
'blue-2-700': #2a4b55,
|
|
1059
|
+
'blue-2-750': #283f47,
|
|
1060
|
+
'blue-2-800': #233337,
|
|
1061
|
+
'blue-2-850': #1d272a,
|
|
1062
|
+
'blue-2-900': #161c1e,
|
|
1063
|
+
'blue-2-950': #0e1112,
|
|
1064
|
+
'purple-050': #f6eeff,
|
|
1065
|
+
'purple-100': #ecdcff,
|
|
1066
|
+
'purple-150': #e3cbfe,
|
|
1067
|
+
'purple-200': #dab9fe,
|
|
1068
|
+
'purple-250': #d0a7fe,
|
|
1069
|
+
'purple-300': #c795fe,
|
|
1070
|
+
'purple-350': #bd83fd,
|
|
1071
|
+
'purple-400': #b36ffd,
|
|
1072
|
+
'purple-450': #a85bfd,
|
|
1073
|
+
'purple-500': #9b4bf3,
|
|
1074
|
+
'purple-550': #8b43da,
|
|
1075
|
+
'purple-600': #7b3cc1,
|
|
1076
|
+
'purple-650': #673c9b,
|
|
1077
|
+
'purple-700': #56387d,
|
|
1078
|
+
'purple-750': #463162,
|
|
1079
|
+
'purple-800': #382a4a,
|
|
1080
|
+
'purple-850': #2a2237,
|
|
1081
|
+
'purple-900': #1e1926,
|
|
1082
|
+
'purple-950': #121017,
|
|
1083
|
+
'pink-050': #fcedf5,
|
|
1084
|
+
'pink-100': #f9daea,
|
|
1085
|
+
'pink-150': #f7c7e0,
|
|
1086
|
+
'pink-200': #f4b4d5,
|
|
1087
|
+
'pink-250': #f1a1ca,
|
|
1088
|
+
'pink-300': #ee8cbf,
|
|
1089
|
+
'pink-350': #ea77b3,
|
|
1090
|
+
'pink-400': #e760a6,
|
|
1091
|
+
'pink-450': #e24797,
|
|
1092
|
+
'pink-500': #cd4089,
|
|
1093
|
+
'pink-550': #b8397b,
|
|
1094
|
+
'pink-600': #a3336d,
|
|
1095
|
+
'pink-650': #86355e,
|
|
1096
|
+
'pink-700': #6e334f,
|
|
1097
|
+
'pink-750': #582e42,
|
|
1098
|
+
'pink-800': #442834,
|
|
1099
|
+
'pink-850': #332028,
|
|
1100
|
+
'pink-900': #24181d,
|
|
1101
|
+
'pink-950': #160f12,
|
|
1102
|
+
'black-000': #00000000,
|
|
1103
|
+
'black-050': #0000000d,
|
|
1104
|
+
'black-100': #0000001a,
|
|
1105
|
+
'black-150': #00000026,
|
|
1106
|
+
'black-200': #00000033,
|
|
1107
|
+
'black-250': #00000040,
|
|
1108
|
+
'black-300': #0000004d,
|
|
1109
|
+
'black-350': #00000059,
|
|
1110
|
+
'black-400': #00000066,
|
|
1111
|
+
'black-450': #00000073,
|
|
1112
|
+
'black-500': #00000080,
|
|
1113
|
+
'black-550': #0000008c,
|
|
1114
|
+
'black-600': #00000099,
|
|
1115
|
+
'black-650': #000000a6,
|
|
1116
|
+
'black-700': #000000b3,
|
|
1117
|
+
'black-750': #000000bf,
|
|
1118
|
+
'black-800': #000000cc,
|
|
1119
|
+
'black-850': #000000d9,
|
|
1120
|
+
'black-900': #000000e6,
|
|
1121
|
+
'black-950': #000000f2,
|
|
1122
|
+
'white-000': #ffffff,
|
|
1123
|
+
'white-050': #ffffff0d,
|
|
1124
|
+
'white-100': #ffffff1a,
|
|
1125
|
+
'white-150': #ffffff26,
|
|
1126
|
+
'white-200': #ffffff33,
|
|
1127
|
+
'white-250': #ffffff40,
|
|
1128
|
+
'white-300': #ffffff4d,
|
|
1129
|
+
'white-350': #ffffff59,
|
|
1130
|
+
'white-400': #ffffff66,
|
|
1131
|
+
'white-450': #ffffff73,
|
|
1132
|
+
'white-500': #ffffff80,
|
|
1133
|
+
'white-550': #ffffff8c,
|
|
1134
|
+
'white-600': #ffffff99,
|
|
1135
|
+
'white-650': #ffffffa6,
|
|
1136
|
+
'white-700': #ffffffb3,
|
|
1137
|
+
'white-750': #ffffffbf,
|
|
1138
|
+
'white-800': #ffffffcc,
|
|
1139
|
+
'white-850': #ffffffd9,
|
|
1140
|
+
'white-900': #ffffffe6,
|
|
1141
|
+
'white-950': #fffffff2,
|
|
1142
|
+
),
|
|
1143
|
+
'transitions': (
|
|
1144
|
+
'ease-in': #{cubic-bezier(0.32, 0, 0.67, 0)},
|
|
1145
|
+
'ease-out': #{cubic-bezier(0.33, 1, 0.68, 1)},
|
|
1146
|
+
'ease-in-out': #{cubic-bezier(0.65, 0, 0.35, 1)},
|
|
1147
|
+
'duration': 250ms,
|
|
95
1148
|
),
|
|
96
1149
|
'font': (
|
|
97
1150
|
'sizes': (
|
|
98
|
-
'
|
|
99
|
-
'
|
|
100
|
-
'
|
|
101
|
-
'
|
|
102
|
-
'
|
|
103
|
-
'
|
|
104
|
-
'
|
|
105
|
-
'
|
|
106
|
-
'
|
|
1151
|
+
'xs': 0.75rem,
|
|
1152
|
+
'sm': 0.875rem,
|
|
1153
|
+
'md': 1rem,
|
|
1154
|
+
'lg': 1.125rem,
|
|
1155
|
+
'ml': 0.938rem,
|
|
1156
|
+
'xl': 1.25rem,
|
|
1157
|
+
't': 0.6875rem,
|
|
1158
|
+
's': 0.75rem,
|
|
1159
|
+
'h1': 2rem,
|
|
1160
|
+
'h2': 1.75rem,
|
|
1161
|
+
'h3': 1.5rem,
|
|
1162
|
+
'h4': 1.375rem,
|
|
1163
|
+
'h5': 1.25rem,
|
|
1164
|
+
'h6': 1.125rem,
|
|
1165
|
+
'xl-alt': 5rem,
|
|
1166
|
+
'lg-alt': 4.5rem,
|
|
1167
|
+
'md-alt': 4rem,
|
|
1168
|
+
'sm-alt': 3.5rem,
|
|
1169
|
+
'xs-alt': 3rem,
|
|
107
1170
|
),
|
|
108
1171
|
'weights': (
|
|
109
1172
|
'thin': 200,
|
|
@@ -115,34 +1178,34 @@ $themes: (
|
|
|
115
1178
|
'black': 800,
|
|
116
1179
|
),
|
|
117
1180
|
'families': (
|
|
118
|
-
'base':
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
'h1': normal,
|
|
123
|
-
'h2': normal,
|
|
124
|
-
'h3': normal,
|
|
125
|
-
'h4': normal,
|
|
126
|
-
'h5': 1px,
|
|
127
|
-
'h6': normal,
|
|
128
|
-
'l': normal,
|
|
129
|
-
'm': normal,
|
|
130
|
-
's': normal,
|
|
1181
|
+
'base': #{\RobotoFlexVariable\,
|
|
1182
|
+
sans-serif},
|
|
1183
|
+
'accent': #{\RobotoFlexVariable\,
|
|
1184
|
+
sans-serif},
|
|
131
1185
|
),
|
|
132
1186
|
),
|
|
133
1187
|
'spacings': (
|
|
134
|
-
'xl': 4rem,
|
|
135
1188
|
'l': 3rem,
|
|
136
1189
|
'b': 1.625rem,
|
|
1190
|
+
'm': 0.8125rem,
|
|
137
1191
|
's': 1rem,
|
|
138
1192
|
't': 0.5rem,
|
|
139
1193
|
'st': 0.25rem,
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
'
|
|
143
|
-
'
|
|
144
|
-
'
|
|
145
|
-
'
|
|
1194
|
+
'4xs': 0.125rem,
|
|
1195
|
+
'xxxs': 0.25rem,
|
|
1196
|
+
'xxs': 0.375rem,
|
|
1197
|
+
'xs': 0.5rem,
|
|
1198
|
+
'sm': 0.75rem,
|
|
1199
|
+
'base': 1rem,
|
|
1200
|
+
'md': 1.5rem,
|
|
1201
|
+
'lg': 2rem,
|
|
1202
|
+
'xl': 2.5rem,
|
|
1203
|
+
'xxl': 3rem,
|
|
1204
|
+
'xxxl': 3.5rem,
|
|
1205
|
+
'4xl': 4rem,
|
|
1206
|
+
'5xl': 4.5rem,
|
|
1207
|
+
'6xl': 6rem,
|
|
1208
|
+
'7xl': 7.5rem,
|
|
146
1209
|
),
|
|
147
1210
|
'breakpoints': (
|
|
148
1211
|
'xs': 0,
|
|
@@ -153,68 +1216,334 @@ $themes: (
|
|
|
153
1216
|
'xxl': 1400px,
|
|
154
1217
|
),
|
|
155
1218
|
),
|
|
156
|
-
'
|
|
157
|
-
'
|
|
158
|
-
'
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
1219
|
+
'contextuals': (
|
|
1220
|
+
'background': (
|
|
1221
|
+
'surface': (
|
|
1222
|
+
'primary': #2f3033,
|
|
1223
|
+
'secondary': #252627,
|
|
1224
|
+
'tertiary': #1b1c1d,
|
|
1225
|
+
),
|
|
1226
|
+
'semantic': (
|
|
1227
|
+
'brand': (
|
|
1228
|
+
'primary': #f72c30,
|
|
1229
|
+
'primary-hover': #d60f29,
|
|
1230
|
+
'secondary': #c90022,
|
|
1231
|
+
'secondary-hover': #c2001b,
|
|
1232
|
+
'tertiary': #c2001b,
|
|
1233
|
+
'tertiary-hover': #bb0014,
|
|
1234
|
+
),
|
|
1235
|
+
'neutral': (
|
|
1236
|
+
'primary': #686b6f,
|
|
1237
|
+
'primary-hover': #505356,
|
|
1238
|
+
'secondary': #45474a,
|
|
1239
|
+
'secondary-hover': #3a3b3e,
|
|
1240
|
+
'tertiary': #3a3b3e,
|
|
1241
|
+
'tertiary-hover': #2f3033,
|
|
1242
|
+
),
|
|
1243
|
+
'contextual': (
|
|
1244
|
+
'primary': #ffffff0d,
|
|
1245
|
+
'primary-hover': #ffffff1a,
|
|
1246
|
+
),
|
|
1247
|
+
'info': (
|
|
1248
|
+
'primary': #1167d4,
|
|
1249
|
+
'primary-hover': #1a509f,
|
|
1250
|
+
'secondary': #20467f,
|
|
1251
|
+
'secondary-hover': #203c63,
|
|
1252
|
+
'tertiary': #203c63,
|
|
1253
|
+
'tertiary-hover': #1d314c,
|
|
1254
|
+
),
|
|
1255
|
+
'success': (
|
|
1256
|
+
'primary': #427816,
|
|
1257
|
+
'primary-hover': #385c1f,
|
|
1258
|
+
'secondary': #344d24,
|
|
1259
|
+
'secondary-hover': #2e4022,
|
|
1260
|
+
'tertiary': #2e4022,
|
|
1261
|
+
'tertiary-hover': #27341f,
|
|
1262
|
+
),
|
|
1263
|
+
'warning': (
|
|
1264
|
+
'primary': #836703,
|
|
1265
|
+
'primary-hover': #625019,
|
|
1266
|
+
'secondary': #524620,
|
|
1267
|
+
'secondary-hover': #443b20,
|
|
1268
|
+
'tertiary': #443b20,
|
|
1269
|
+
'tertiary-hover': #36301d,
|
|
1270
|
+
),
|
|
1271
|
+
'error': (
|
|
1272
|
+
'primary': #d80000,
|
|
1273
|
+
'primary-hover': #9e2219,
|
|
1274
|
+
'secondary': #802820,
|
|
1275
|
+
'secondary-hover': #662820,
|
|
1276
|
+
'tertiary': #662820,
|
|
1277
|
+
'tertiary-hover': #4f231e,
|
|
1278
|
+
),
|
|
1279
|
+
'disabled': (
|
|
1280
|
+
'primary': #3a3b3e,
|
|
1281
|
+
'secondary': #2f3033,
|
|
1282
|
+
),
|
|
1283
|
+
),
|
|
1284
|
+
'palette': (
|
|
1285
|
+
'brand': (
|
|
1286
|
+
'primary': #ed575d,
|
|
1287
|
+
'secondary': #f5383e,
|
|
1288
|
+
'tertiary': #f72c30,
|
|
1289
|
+
),
|
|
1290
|
+
'red': (
|
|
1291
|
+
'primary': #ee7c7b,
|
|
1292
|
+
'secondary': #e74e4d,
|
|
1293
|
+
'tertiary': #c23837,
|
|
1294
|
+
),
|
|
1295
|
+
'orange': (
|
|
1296
|
+
'primary': #f27e27,
|
|
1297
|
+
'secondary': #d26411,
|
|
1298
|
+
'tertiary': #aa510e,
|
|
1299
|
+
),
|
|
1300
|
+
'brown': (
|
|
1301
|
+
'primary': #af9992,
|
|
1302
|
+
'secondary': #997e74,
|
|
1303
|
+
'tertiary': #846357,
|
|
1304
|
+
),
|
|
1305
|
+
'yellow': (
|
|
1306
|
+
'primary': #c39810,
|
|
1307
|
+
'secondary': #a37f0d,
|
|
1308
|
+
'tertiary': #84670b,
|
|
1309
|
+
),
|
|
1310
|
+
'green': (
|
|
1311
|
+
'primary': #48b257,
|
|
1312
|
+
'secondary': #3b9548,
|
|
1313
|
+
'tertiary': #30793a,
|
|
1314
|
+
),
|
|
1315
|
+
'blue-1': (
|
|
1316
|
+
'primary': #6f9bfd,
|
|
1317
|
+
'secondary': #437dfc,
|
|
1318
|
+
'tertiary': #3665cc,
|
|
1319
|
+
),
|
|
1320
|
+
'blue-2': (
|
|
1321
|
+
'primary': #3baaca,
|
|
1322
|
+
'secondary': #318ea9,
|
|
1323
|
+
'tertiary': #277389,
|
|
1324
|
+
),
|
|
1325
|
+
'purple': (
|
|
1326
|
+
'primary': #bd83fd,
|
|
1327
|
+
'secondary': #a85bfd,
|
|
1328
|
+
'tertiary': #8b43da,
|
|
1329
|
+
),
|
|
1330
|
+
'pink': (
|
|
1331
|
+
'primary': #ea77b3,
|
|
1332
|
+
'secondary': #e24797,
|
|
1333
|
+
'tertiary': #b8397b,
|
|
1334
|
+
),
|
|
1335
|
+
'gray': (
|
|
1336
|
+
'primary': #999ea5,
|
|
1337
|
+
'secondary': #80848a,
|
|
1338
|
+
'tertiary': #686b6f,
|
|
1339
|
+
),
|
|
1340
|
+
),
|
|
162
1341
|
),
|
|
163
|
-
'
|
|
164
|
-
'
|
|
165
|
-
'
|
|
1342
|
+
'content': (
|
|
1343
|
+
'logo1': #95abff,
|
|
1344
|
+
'logo2': #95abff,
|
|
1345
|
+
'semantic': (
|
|
1346
|
+
'brand': (
|
|
1347
|
+
'primary': #fff0f1,
|
|
1348
|
+
'secondary': #ffcad1,
|
|
1349
|
+
'tertiary': #ed8083,
|
|
1350
|
+
'on-brand': #fff0f1,
|
|
1351
|
+
),
|
|
1352
|
+
'neutral': (
|
|
1353
|
+
'primary': #f0f1f2,
|
|
1354
|
+
'secondary': #e1e2e5,
|
|
1355
|
+
'tertiary': #b5b9be,
|
|
1356
|
+
'on-neutral': #f0f1f2,
|
|
1357
|
+
),
|
|
1358
|
+
'contextual': (
|
|
1359
|
+
'primary': #000000d9,
|
|
1360
|
+
),
|
|
1361
|
+
'info': (
|
|
1362
|
+
'primary': #eaf1fb,
|
|
1363
|
+
'secondary': #d5e4f7,
|
|
1364
|
+
'tertiary': #96bcec,
|
|
1365
|
+
'on-info': #eaf1fb,
|
|
1366
|
+
),
|
|
1367
|
+
'success': (
|
|
1368
|
+
'primary': #e4f7d4,
|
|
1369
|
+
'secondary': #c8eea8,
|
|
1370
|
+
'tertiary': #72cf27,
|
|
1371
|
+
'on-success': #e4f7d4,
|
|
1372
|
+
),
|
|
1373
|
+
'warning': (
|
|
1374
|
+
'primary': #fff1bd,
|
|
1375
|
+
'secondary': #ffe176,
|
|
1376
|
+
'tertiary': #e3b205,
|
|
1377
|
+
'on-warning': #fff1bd,
|
|
1378
|
+
),
|
|
1379
|
+
'error': (
|
|
1380
|
+
'primary': #fceded,
|
|
1381
|
+
'secondary': #fadbdb,
|
|
1382
|
+
'tertiary': #f2a4a4,
|
|
1383
|
+
'on-error': #fceded,
|
|
1384
|
+
),
|
|
1385
|
+
'disabled': (
|
|
1386
|
+
'primary': #5c5f63,
|
|
1387
|
+
'secondary': #0000004d,
|
|
1388
|
+
),
|
|
1389
|
+
),
|
|
1390
|
+
'palette': (
|
|
1391
|
+
'brand': (
|
|
1392
|
+
'primary': #ed575d,
|
|
1393
|
+
'secondary': #f5383e,
|
|
1394
|
+
'tertiary': #f72c30,
|
|
1395
|
+
),
|
|
1396
|
+
'red': (
|
|
1397
|
+
'primary': #ee7c7b,
|
|
1398
|
+
'secondary': #e74e4d,
|
|
1399
|
+
'tertiary': #c23837,
|
|
1400
|
+
),
|
|
1401
|
+
'orange': (
|
|
1402
|
+
'primary': #f27e27,
|
|
1403
|
+
'secondary': #d26411,
|
|
1404
|
+
'tertiary': #aa510e,
|
|
1405
|
+
),
|
|
1406
|
+
'brown': (
|
|
1407
|
+
'primary': #af9992,
|
|
1408
|
+
'secondary': #997e74,
|
|
1409
|
+
'tertiary': #846357,
|
|
1410
|
+
),
|
|
1411
|
+
'yellow': (
|
|
1412
|
+
'primary': #c39810,
|
|
1413
|
+
'secondary': #a37f0d,
|
|
1414
|
+
'tertiary': #84670b,
|
|
1415
|
+
),
|
|
1416
|
+
'green': (
|
|
1417
|
+
'primary': #48b257,
|
|
1418
|
+
'secondary': #3b9548,
|
|
1419
|
+
'tertiary': #30793a,
|
|
1420
|
+
),
|
|
1421
|
+
'blue-1': (
|
|
1422
|
+
'primary': #6f9bfd,
|
|
1423
|
+
'secondary': #437dfc,
|
|
1424
|
+
'tertiary': #3665cc,
|
|
1425
|
+
),
|
|
1426
|
+
'blue-2': (
|
|
1427
|
+
'primary': #3baaca,
|
|
1428
|
+
'secondary': #318ea9,
|
|
1429
|
+
'tertiary': #277389,
|
|
1430
|
+
),
|
|
1431
|
+
'purple': (
|
|
1432
|
+
'primary': #bd83fd,
|
|
1433
|
+
'secondary': #a85bfd,
|
|
1434
|
+
'tertiary': #8b43da,
|
|
1435
|
+
),
|
|
1436
|
+
'pink': (
|
|
1437
|
+
'primary': #ea77b3,
|
|
1438
|
+
'secondary': #e24797,
|
|
1439
|
+
'tertiary': #b8397b,
|
|
1440
|
+
),
|
|
1441
|
+
'gray': (
|
|
1442
|
+
'primary': #999ea5,
|
|
1443
|
+
'secondary': #80848a,
|
|
1444
|
+
'tertiary': #686b6f,
|
|
1445
|
+
),
|
|
1446
|
+
),
|
|
166
1447
|
),
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
'
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
1448
|
+
'border': (
|
|
1449
|
+
'surface': (
|
|
1450
|
+
'primary': #3a3b3e,
|
|
1451
|
+
),
|
|
1452
|
+
'semantic': (
|
|
1453
|
+
'brand': (
|
|
1454
|
+
'primary': #f5383e,
|
|
1455
|
+
'secondary': #e81f2f,
|
|
1456
|
+
'tertiary': #c90022,
|
|
1457
|
+
),
|
|
1458
|
+
'contextual': (
|
|
1459
|
+
'primary': #00000033,
|
|
1460
|
+
),
|
|
1461
|
+
'neutral': (
|
|
1462
|
+
'primary': #80848a,
|
|
1463
|
+
'secondary': #5c5f63,
|
|
1464
|
+
'tertiary': #45474a,
|
|
1465
|
+
),
|
|
1466
|
+
'info': (
|
|
1467
|
+
'primary': #4085dc,
|
|
1468
|
+
'secondary': #0659c5,
|
|
1469
|
+
'tertiary': #20467f,
|
|
1470
|
+
),
|
|
1471
|
+
'success': (
|
|
1472
|
+
'primary': #51941c,
|
|
1473
|
+
'secondary': #3a6a14,
|
|
1474
|
+
'tertiary': #344d24,
|
|
1475
|
+
),
|
|
1476
|
+
'warning': (
|
|
1477
|
+
'primary': #a27f03,
|
|
1478
|
+
'secondary': #745b03,
|
|
1479
|
+
'tertiary': #524620,
|
|
1480
|
+
),
|
|
1481
|
+
'error': (
|
|
1482
|
+
'primary': #e55050,
|
|
1483
|
+
'secondary': #c00101,
|
|
1484
|
+
'tertiary': #802820,
|
|
1485
|
+
),
|
|
1486
|
+
'disabled': (
|
|
1487
|
+
'primary': #2f3033,
|
|
1488
|
+
),
|
|
1489
|
+
),
|
|
1490
|
+
'palette': (
|
|
1491
|
+
'brand': (
|
|
1492
|
+
'primary': #ed575d,
|
|
1493
|
+
'secondary': #f5383e,
|
|
1494
|
+
'tertiary': #f72c30,
|
|
1495
|
+
),
|
|
1496
|
+
'red': (
|
|
1497
|
+
'primary': #ee7c7b,
|
|
1498
|
+
'secondary': #e74e4d,
|
|
1499
|
+
'tertiary': #c23837,
|
|
1500
|
+
),
|
|
1501
|
+
'orange': (
|
|
1502
|
+
'primary': #f27e27,
|
|
1503
|
+
'secondary': #d26411,
|
|
1504
|
+
'tertiary': #aa510e,
|
|
1505
|
+
),
|
|
1506
|
+
'brown': (
|
|
1507
|
+
'primary': #af9992,
|
|
1508
|
+
'secondary': #997e74,
|
|
1509
|
+
'tertiary': #846357,
|
|
1510
|
+
),
|
|
1511
|
+
'yellow': (
|
|
1512
|
+
'primary': #c39810,
|
|
1513
|
+
'secondary': #a37f0d,
|
|
1514
|
+
'tertiary': #84670b,
|
|
1515
|
+
),
|
|
1516
|
+
'green': (
|
|
1517
|
+
'primary': #48b257,
|
|
1518
|
+
'secondary': #3b9548,
|
|
1519
|
+
'tertiary': #30793a,
|
|
1520
|
+
),
|
|
1521
|
+
'blue-1': (
|
|
1522
|
+
'primary': #6f9bfd,
|
|
1523
|
+
'secondary': #437dfc,
|
|
1524
|
+
'tertiary': #3665cc,
|
|
1525
|
+
),
|
|
1526
|
+
'blue-2': (
|
|
1527
|
+
'primary': #3baaca,
|
|
1528
|
+
'secondary': #318ea9,
|
|
1529
|
+
'tertiary': #277389,
|
|
1530
|
+
),
|
|
1531
|
+
'purple': (
|
|
1532
|
+
'primary': #bd83fd,
|
|
1533
|
+
'secondary': #a85bfd,
|
|
1534
|
+
'tertiary': #8b43da,
|
|
1535
|
+
),
|
|
1536
|
+
'pink': (
|
|
1537
|
+
'primary': #ea77b3,
|
|
1538
|
+
'secondary': #e24797,
|
|
1539
|
+
'tertiary': #b8397b,
|
|
1540
|
+
),
|
|
1541
|
+
'gray': (
|
|
1542
|
+
'primary': #999ea5,
|
|
1543
|
+
'secondary': #80848a,
|
|
1544
|
+
'tertiary': #686b6f,
|
|
1545
|
+
),
|
|
1546
|
+
),
|
|
218
1547
|
),
|
|
219
1548
|
),
|
|
220
1549
|
),
|