@thecb/components 7.8.1 → 7.8.3-beta.1
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/dist/index.cjs.js +255 -206
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +255 -206
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/button-with-action/ButtonWithAction.theme.js +101 -96
- package/src/components/atoms/icons/{ExternalLinkicon.js → ExternalLinkIcon.js} +0 -0
- package/src/components/molecules/payment-form-ach/PaymentFormACH.js +33 -8
- package/src/components/molecules/payment-form-card/PaymentFormCard.js +35 -10
- package/src/components/molecules/terms-and-conditions/TermsAndConditions.js +3 -1
- package/src/components/molecules/terms-and-conditions-modal/TermsAndConditionsModal.js +3 -2
- package/src/constants/colors.js +6 -0
- package/src/.DS_Store +0 -0
- package/src/components/atoms/.DS_Store +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import {
|
|
2
|
+
WHITE,
|
|
3
|
+
TRANSPARENT,
|
|
4
|
+
SAPPHIRE_BLUE,
|
|
5
|
+
PEACOCK_BLUE,
|
|
6
|
+
MATISSE_BLUE,
|
|
7
|
+
RASPBERRY,
|
|
8
|
+
ERROR_COLOR
|
|
9
|
+
} from "../../../constants/colors";
|
|
5
10
|
|
|
6
11
|
const padding = {
|
|
7
12
|
primary: "0.75rem 1.5rem",
|
|
@@ -19,18 +24,18 @@ const padding = {
|
|
|
19
24
|
};
|
|
20
25
|
|
|
21
26
|
const color = {
|
|
22
|
-
primary:
|
|
23
|
-
secondary:
|
|
24
|
-
back:
|
|
25
|
-
smallPrimary:
|
|
26
|
-
smallSecondary:
|
|
27
|
-
smallGhost:
|
|
28
|
-
ghost:
|
|
29
|
-
tertiary:
|
|
30
|
-
danger:
|
|
31
|
-
dangerSecondary:
|
|
32
|
-
whiteSecondary:
|
|
33
|
-
whitePrimary:
|
|
27
|
+
primary: WHITE,
|
|
28
|
+
secondary: MATISSE_BLUE,
|
|
29
|
+
back: MATISSE_BLUE,
|
|
30
|
+
smallPrimary: WHITE,
|
|
31
|
+
smallSecondary: MATISSE_BLUE,
|
|
32
|
+
smallGhost: MATISSE_BLUE,
|
|
33
|
+
ghost: MATISSE_BLUE,
|
|
34
|
+
tertiary: MATISSE_BLUE,
|
|
35
|
+
danger: WHITE,
|
|
36
|
+
dangerSecondary: ERROR_COLOR,
|
|
37
|
+
whiteSecondary: WHITE,
|
|
38
|
+
whitePrimary: WHITE
|
|
34
39
|
};
|
|
35
40
|
|
|
36
41
|
const fontSizeVariant = {
|
|
@@ -94,123 +99,123 @@ const minWidth = {
|
|
|
94
99
|
};
|
|
95
100
|
|
|
96
101
|
const backgroundColor = {
|
|
97
|
-
primary:
|
|
98
|
-
secondary:
|
|
99
|
-
back:
|
|
100
|
-
smallPrimary:
|
|
101
|
-
smallSecondary:
|
|
102
|
-
smallGhost:
|
|
103
|
-
ghost:
|
|
104
|
-
tertiary:
|
|
105
|
-
danger:
|
|
106
|
-
dangerSecondary:
|
|
107
|
-
whiteSecondary:
|
|
108
|
-
whitePrimary:
|
|
102
|
+
primary: MATISSE_BLUE,
|
|
103
|
+
secondary: TRANSPARENT,
|
|
104
|
+
back: TRANSPARENT,
|
|
105
|
+
smallPrimary: MATISSE_BLUE,
|
|
106
|
+
smallSecondary: TRANSPARENT,
|
|
107
|
+
smallGhost: TRANSPARENT,
|
|
108
|
+
ghost: TRANSPARENT,
|
|
109
|
+
tertiary: TRANSPARENT,
|
|
110
|
+
danger: RASPBERRY,
|
|
111
|
+
dangerSecondary: TRANSPARENT,
|
|
112
|
+
whiteSecondary: TRANSPARENT,
|
|
113
|
+
whitePrimary: TRANSPARENT
|
|
109
114
|
};
|
|
110
115
|
|
|
111
116
|
const border = {
|
|
112
|
-
primary: "2px solid
|
|
113
|
-
secondary: "2px solid
|
|
114
|
-
back: "2px solid
|
|
115
|
-
smallPrimary: "2px solid
|
|
116
|
-
smallSecondary: "2px solid
|
|
117
|
+
primary: "2px solid " + MATISSE_BLUE,
|
|
118
|
+
secondary: "2px solid " + MATISSE_BLUE,
|
|
119
|
+
back: "2px solid " + MATISSE_BLUE,
|
|
120
|
+
smallPrimary: "2px solid " + MATISSE_BLUE,
|
|
121
|
+
smallSecondary: "2px solid " + MATISSE_BLUE,
|
|
117
122
|
smallGhost: "none",
|
|
118
123
|
ghost: "none",
|
|
119
124
|
tertiary: "none",
|
|
120
|
-
danger: "2px solid
|
|
121
|
-
dangerSecondary: "2px solid
|
|
122
|
-
whiteSecondary: "2px solid
|
|
123
|
-
whitePrimary: "2px solid
|
|
125
|
+
danger: "2px solid " + RASPBERRY,
|
|
126
|
+
dangerSecondary: "2px solid " + ERROR_COLOR,
|
|
127
|
+
whiteSecondary: "2px solid " + WHITE,
|
|
128
|
+
whitePrimary: "2px solid " + TRANSPARENT
|
|
124
129
|
};
|
|
125
130
|
|
|
126
131
|
const hoverBackgroundColor = {
|
|
127
|
-
primary:
|
|
132
|
+
primary: SAPPHIRE_BLUE,
|
|
128
133
|
secondary: "#DBEAF0",
|
|
129
|
-
back:
|
|
130
|
-
smallPrimary:
|
|
134
|
+
back: TRANSPARENT,
|
|
135
|
+
smallPrimary: SAPPHIRE_BLUE,
|
|
131
136
|
smallSecondary: "#DBEAF0",
|
|
132
|
-
smallGhost:
|
|
133
|
-
ghost:
|
|
134
|
-
tertiary:
|
|
137
|
+
smallGhost: TRANSPARENT,
|
|
138
|
+
ghost: TRANSPARENT,
|
|
139
|
+
tertiary: TRANSPARENT,
|
|
135
140
|
danger: "#BA002C",
|
|
136
|
-
dangerSecondary: "
|
|
137
|
-
whiteSecondary:
|
|
138
|
-
whitePrimary:
|
|
141
|
+
dangerSecondary: "#FAE7EE",
|
|
142
|
+
whiteSecondary: TRANSPARENT,
|
|
143
|
+
whitePrimary: TRANSPARENT
|
|
139
144
|
};
|
|
140
145
|
|
|
141
146
|
const hoverBorderColor = {
|
|
142
|
-
primary:
|
|
143
|
-
secondary:
|
|
147
|
+
primary: SAPPHIRE_BLUE,
|
|
148
|
+
secondary: MATISSE_BLUE,
|
|
144
149
|
back: "#DCEAF1",
|
|
145
|
-
smallPrimary:
|
|
146
|
-
smallSecondary:
|
|
147
|
-
smallGhost:
|
|
148
|
-
ghost:
|
|
149
|
-
tertiary:
|
|
150
|
+
smallPrimary: SAPPHIRE_BLUE,
|
|
151
|
+
smallSecondary: MATISSE_BLUE,
|
|
152
|
+
smallGhost: TRANSPARENT,
|
|
153
|
+
ghost: TRANSPARENT,
|
|
154
|
+
tertiary: TRANSPARENT,
|
|
150
155
|
danger: "#BA002C",
|
|
151
156
|
dangerSecondary: "#B10541",
|
|
152
|
-
whiteSecondary: "2px solid
|
|
153
|
-
whitePrimary: "2px solid
|
|
157
|
+
whiteSecondary: "2px solid " + TRANSPARENT,
|
|
158
|
+
whitePrimary: "2px solid " + TRANSPARENT
|
|
154
159
|
};
|
|
155
160
|
|
|
156
161
|
const hoverColor = {
|
|
157
|
-
primary:
|
|
158
|
-
secondary:
|
|
159
|
-
back:
|
|
160
|
-
smallPrimary:
|
|
161
|
-
smallSecondary:
|
|
162
|
-
smallGhost:
|
|
163
|
-
ghost:
|
|
164
|
-
tertiary:
|
|
165
|
-
danger:
|
|
162
|
+
primary: WHITE,
|
|
163
|
+
secondary: SAPPHIRE_BLUE,
|
|
164
|
+
back: SAPPHIRE_BLUE,
|
|
165
|
+
smallPrimary: WHITE,
|
|
166
|
+
smallSecondary: SAPPHIRE_BLUE,
|
|
167
|
+
smallGhost: SAPPHIRE_BLUE,
|
|
168
|
+
ghost: SAPPHIRE_BLUE,
|
|
169
|
+
tertiary: SAPPHIRE_BLUE,
|
|
170
|
+
danger: WHITE,
|
|
166
171
|
dangerSecondary: "#B10541",
|
|
167
|
-
whiteSecondary:
|
|
168
|
-
whitePrimary:
|
|
172
|
+
whiteSecondary: WHITE,
|
|
173
|
+
whitePrimary: WHITE
|
|
169
174
|
};
|
|
170
175
|
|
|
171
176
|
const activeBackgroundColor = {
|
|
172
|
-
primary:
|
|
177
|
+
primary: PEACOCK_BLUE,
|
|
173
178
|
secondary: "#B8D5E1",
|
|
174
|
-
back:
|
|
175
|
-
smallPrimary:
|
|
179
|
+
back: TRANSPARENT,
|
|
180
|
+
smallPrimary: PEACOCK_BLUE,
|
|
176
181
|
smallSecondary: "#B8D5E1",
|
|
177
|
-
smallGhost:
|
|
178
|
-
ghost:
|
|
179
|
-
tertiary:
|
|
182
|
+
smallGhost: TRANSPARENT,
|
|
183
|
+
ghost: TRANSPARENT,
|
|
184
|
+
tertiary: TRANSPARENT,
|
|
180
185
|
danger: "#870000",
|
|
181
|
-
dangerSecondary: "
|
|
182
|
-
whiteSecondary:
|
|
183
|
-
whitePrimary:
|
|
186
|
+
dangerSecondary: "#FAE7EE",
|
|
187
|
+
whiteSecondary: TRANSPARENT,
|
|
188
|
+
whitePrimary: TRANSPARENT
|
|
184
189
|
};
|
|
185
190
|
|
|
186
191
|
const activeBorderColor = {
|
|
187
|
-
primary:
|
|
188
|
-
secondary:
|
|
189
|
-
back:
|
|
190
|
-
smallPrimary:
|
|
191
|
-
smallSecondary:
|
|
192
|
-
smallGhost:
|
|
193
|
-
ghost:
|
|
194
|
-
tertiary:
|
|
192
|
+
primary: PEACOCK_BLUE,
|
|
193
|
+
secondary: MATISSE_BLUE,
|
|
194
|
+
back: PEACOCK_BLUE,
|
|
195
|
+
smallPrimary: PEACOCK_BLUE,
|
|
196
|
+
smallSecondary: MATISSE_BLUE,
|
|
197
|
+
smallGhost: TRANSPARENT,
|
|
198
|
+
ghost: TRANSPARENT,
|
|
199
|
+
tertiary: TRANSPARENT,
|
|
195
200
|
danger: "#870000",
|
|
196
201
|
dangerSecondary: "#910029",
|
|
197
|
-
whiteSecondary: "2px solid
|
|
198
|
-
whitePrimary: "2px solid
|
|
202
|
+
whiteSecondary: "2px solid " + TRANSPARENT,
|
|
203
|
+
whitePrimary: "2px solid " + TRANSPARENT
|
|
199
204
|
};
|
|
200
205
|
|
|
201
206
|
const activeColor = {
|
|
202
|
-
primary:
|
|
203
|
-
secondary:
|
|
204
|
-
back:
|
|
205
|
-
smallPrimary:
|
|
206
|
-
smallSecondary:
|
|
207
|
-
smallGhost:
|
|
208
|
-
ghost:
|
|
209
|
-
tertiary:
|
|
210
|
-
danger:
|
|
207
|
+
primary: WHITE,
|
|
208
|
+
secondary: MATISSE_BLUE,
|
|
209
|
+
back: PEACOCK_BLUE,
|
|
210
|
+
smallPrimary: WHITE,
|
|
211
|
+
smallSecondary: PEACOCK_BLUE,
|
|
212
|
+
smallGhost: PEACOCK_BLUE,
|
|
213
|
+
ghost: PEACOCK_BLUE,
|
|
214
|
+
tertiary: PEACOCK_BLUE,
|
|
215
|
+
danger: WHITE,
|
|
211
216
|
dangerSecondary: "#910029",
|
|
212
|
-
whiteSecondary:
|
|
213
|
-
whitePrimary:
|
|
217
|
+
whiteSecondary: WHITE,
|
|
218
|
+
whitePrimary: WHITE
|
|
214
219
|
};
|
|
215
220
|
|
|
216
221
|
export const fallbackValues = {
|
|
File without changes
|
|
@@ -14,6 +14,9 @@ import {
|
|
|
14
14
|
} from "../../atoms/form-layouts";
|
|
15
15
|
import AccountAndRoutingModal from "../account-and-routing-modal";
|
|
16
16
|
import { noop } from "../../../util/general";
|
|
17
|
+
import { Cluster, Cover } from "../../atoms/layouts";
|
|
18
|
+
import TermsAndConditionsModal from "../terms-and-conditions-modal/TermsAndConditionsModal";
|
|
19
|
+
import Text from "../../atoms/text";
|
|
17
20
|
|
|
18
21
|
const PaymentFormACH = ({
|
|
19
22
|
variant = "default",
|
|
@@ -28,13 +31,17 @@ const PaymentFormACH = ({
|
|
|
28
31
|
handleSubmit = noop,
|
|
29
32
|
showWalletCheckbox,
|
|
30
33
|
saveToWallet,
|
|
31
|
-
walletCheckboxMarked
|
|
34
|
+
walletCheckboxMarked,
|
|
35
|
+
termsContent,
|
|
36
|
+
termsTitle = "Terms & Conditions"
|
|
32
37
|
}) => {
|
|
33
38
|
if (clearOnDismount) {
|
|
34
39
|
useEffect(() => () => actions.form.clear(), []);
|
|
35
40
|
}
|
|
36
41
|
const [showRouting, toggleShowRouting] = useState(false);
|
|
37
42
|
const [showAccount, toggleShowAccount] = useState(false);
|
|
43
|
+
const [termsModalOpen, setTermsModalOpen] = useState(false);
|
|
44
|
+
const showTerms = !!termsContent;
|
|
38
45
|
|
|
39
46
|
const nameErrors = {
|
|
40
47
|
[required.error]: "Name is required"
|
|
@@ -153,13 +160,31 @@ const PaymentFormACH = ({
|
|
|
153
160
|
hidden={hideDefaultPayment}
|
|
154
161
|
/>
|
|
155
162
|
)}
|
|
156
|
-
{showWalletCheckbox && (
|
|
157
|
-
<
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
+
{(showWalletCheckbox || showTerms) && (
|
|
164
|
+
<Cluster childGap={"4px"}>
|
|
165
|
+
{showWalletCheckbox && (
|
|
166
|
+
<Checkbox
|
|
167
|
+
name="bank checkbox"
|
|
168
|
+
title="Save checking account to wallet."
|
|
169
|
+
checked={walletCheckboxMarked}
|
|
170
|
+
onChange={saveToWallet}
|
|
171
|
+
/>
|
|
172
|
+
)}
|
|
173
|
+
{showTerms && (
|
|
174
|
+
<Cover singleChild>
|
|
175
|
+
<Cluster childGap={0}>
|
|
176
|
+
<Text>View </Text>
|
|
177
|
+
<TermsAndConditionsModal
|
|
178
|
+
link={termsTitle}
|
|
179
|
+
terms={termsContent}
|
|
180
|
+
title={termsTitle}
|
|
181
|
+
isOpen={termsModalOpen}
|
|
182
|
+
toggleOpen={setTermsModalOpen}
|
|
183
|
+
/>
|
|
184
|
+
</Cluster>
|
|
185
|
+
</Cover>
|
|
186
|
+
)}
|
|
187
|
+
</Cluster>
|
|
163
188
|
)}
|
|
164
189
|
</FormInputColumn>
|
|
165
190
|
</FormContainer>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React, { useEffect, useContext } from "react";
|
|
1
|
+
import React, { useEffect, useContext, useState } from "react";
|
|
2
2
|
import { ThemeContext } from "styled-components";
|
|
3
3
|
import {
|
|
4
4
|
required,
|
|
@@ -26,8 +26,10 @@ import {
|
|
|
26
26
|
FormContainer,
|
|
27
27
|
FormInputRow
|
|
28
28
|
} from "../../atoms/form-layouts";
|
|
29
|
-
import { Box } from "../../atoms/layouts";
|
|
29
|
+
import { Box, Cluster, Cover } from "../../atoms/layouts";
|
|
30
30
|
import withWindowSize from "../../withWindowSize";
|
|
31
|
+
import TermsAndConditionsModal from "../terms-and-conditions-modal/TermsAndConditionsModal";
|
|
32
|
+
import Text from "../../atoms/text";
|
|
31
33
|
|
|
32
34
|
const PaymentFormCard = ({
|
|
33
35
|
variant = "default",
|
|
@@ -40,9 +42,14 @@ const PaymentFormCard = ({
|
|
|
40
42
|
showWalletCheckbox,
|
|
41
43
|
saveToWallet,
|
|
42
44
|
walletCheckboxMarked,
|
|
43
|
-
deniedCards
|
|
45
|
+
deniedCards,
|
|
46
|
+
termsContent,
|
|
47
|
+
termsTitle = "Terms & Conditions"
|
|
44
48
|
}) => {
|
|
45
49
|
const { isMobile } = useContext(ThemeContext);
|
|
50
|
+
const [termsModalOpen, setTermsModalOpen] = useState(false);
|
|
51
|
+
const showTerms = !!termsContent;
|
|
52
|
+
|
|
46
53
|
useEffect(() => {
|
|
47
54
|
if (deniedCards) {
|
|
48
55
|
deniedCards.map(card =>
|
|
@@ -177,13 +184,31 @@ const PaymentFormCard = ({
|
|
|
177
184
|
/>
|
|
178
185
|
</Box>
|
|
179
186
|
)}
|
|
180
|
-
{showWalletCheckbox && (
|
|
181
|
-
<
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
+
{(showWalletCheckbox || showTerms) && (
|
|
188
|
+
<Cluster childGap={"4px"}>
|
|
189
|
+
{showWalletCheckbox && (
|
|
190
|
+
<Checkbox
|
|
191
|
+
name="credit card checkbox"
|
|
192
|
+
title="Save credit card to wallet."
|
|
193
|
+
checked={walletCheckboxMarked}
|
|
194
|
+
onChange={saveToWallet}
|
|
195
|
+
/>
|
|
196
|
+
)}
|
|
197
|
+
{showTerms && (
|
|
198
|
+
<Cover singleChild>
|
|
199
|
+
<Cluster childGap={0}>
|
|
200
|
+
<Text>View </Text>
|
|
201
|
+
<TermsAndConditionsModal
|
|
202
|
+
link={termsTitle}
|
|
203
|
+
terms={termsContent}
|
|
204
|
+
title={termsTitle}
|
|
205
|
+
isOpen={termsModalOpen}
|
|
206
|
+
toggleOpen={setTermsModalOpen}
|
|
207
|
+
/>
|
|
208
|
+
</Cluster>
|
|
209
|
+
</Cover>
|
|
210
|
+
)}
|
|
211
|
+
</Cluster>
|
|
187
212
|
)}
|
|
188
213
|
</FormInputColumn>
|
|
189
214
|
</FormContainer>
|
|
@@ -9,7 +9,8 @@ const TermsAndConditions = ({
|
|
|
9
9
|
isChecked,
|
|
10
10
|
html,
|
|
11
11
|
terms,
|
|
12
|
-
error = false
|
|
12
|
+
error = false,
|
|
13
|
+
linkVariant
|
|
13
14
|
}) => {
|
|
14
15
|
const [showTerms, toggleShowTerms] = useState(false);
|
|
15
16
|
return (
|
|
@@ -31,6 +32,7 @@ const TermsAndConditions = ({
|
|
|
31
32
|
terms={terms}
|
|
32
33
|
isOpen={showTerms}
|
|
33
34
|
toggleOpen={toggleShowTerms}
|
|
35
|
+
linkVariant={linkVariant}
|
|
34
36
|
/>
|
|
35
37
|
)}
|
|
36
38
|
</Stack>
|
|
@@ -14,6 +14,7 @@ const TermsAndConditionsModal = ({
|
|
|
14
14
|
acceptText,
|
|
15
15
|
terms,
|
|
16
16
|
variant,
|
|
17
|
+
linkVariant = "p",
|
|
17
18
|
themeValues
|
|
18
19
|
}) => (
|
|
19
20
|
<Modal
|
|
@@ -42,14 +43,14 @@ const TermsAndConditionsModal = ({
|
|
|
42
43
|
}}
|
|
43
44
|
>
|
|
44
45
|
<Text
|
|
45
|
-
variant={
|
|
46
|
+
variant={linkVariant}
|
|
46
47
|
onClick={() => toggleOpen(true)}
|
|
47
48
|
onKeyPress={e => e.key === "Enter" && toggleOpen(true)}
|
|
48
49
|
tabIndex="0"
|
|
49
50
|
color={themeValues.linkColor}
|
|
50
51
|
weight={themeValues.fontWeight}
|
|
51
52
|
hoverStyles={themeValues.modalLinkHoverFocus}
|
|
52
|
-
extraStyles={`display: inline-block; width: fit-content
|
|
53
|
+
extraStyles={`display: inline-block; width: fit-content; cursor: pointer`}
|
|
53
54
|
>
|
|
54
55
|
{link}
|
|
55
56
|
</Text>
|
package/src/constants/colors.js
CHANGED
|
@@ -54,6 +54,8 @@ const HOVER_LIGHT_BLUE = "#EFFAFF";
|
|
|
54
54
|
const MATISSE_BLUE = "#15749D";
|
|
55
55
|
const ROYAL_BLUE = "#3181E3";
|
|
56
56
|
const ASTRAL_BLUE = "#3176AA";
|
|
57
|
+
const SAPPHIRE_BLUE = "#116285";
|
|
58
|
+
const PEACOCK_BLUE = "#0E506D";
|
|
57
59
|
// GREEN
|
|
58
60
|
const FOREST_GREEN = "#19b03F";
|
|
59
61
|
const MEADOW_GREEN = "#16C98D";
|
|
@@ -76,6 +78,7 @@ const RED = "#FF0000";
|
|
|
76
78
|
const CRIMSON_RED = "#ED1C24";
|
|
77
79
|
const THUNDERBIRD_RED = "#C3191F";
|
|
78
80
|
const RAZZMATAZZ_RED = "#D11053";
|
|
81
|
+
const RASPBERRY = "#ED125F";
|
|
79
82
|
const FANTASY_RED = "#FCF4F4";
|
|
80
83
|
const COSMOS_RED = "#FFD0D3";
|
|
81
84
|
const BLUSH_RED = "#FFF0F5";
|
|
@@ -161,6 +164,8 @@ export {
|
|
|
161
164
|
MATISSE_BLUE,
|
|
162
165
|
ROYAL_BLUE,
|
|
163
166
|
ASTRAL_BLUE,
|
|
167
|
+
SAPPHIRE_BLUE,
|
|
168
|
+
PEACOCK_BLUE,
|
|
164
169
|
FOREST_GREEN,
|
|
165
170
|
MEADOW_GREEN,
|
|
166
171
|
POLAR_GREEN,
|
|
@@ -182,6 +187,7 @@ export {
|
|
|
182
187
|
FANTASY_RED,
|
|
183
188
|
COSMOS_RED,
|
|
184
189
|
BLUSH_RED,
|
|
190
|
+
RASPBERRY,
|
|
185
191
|
ALERT_COLORS,
|
|
186
192
|
ERROR_COLOR
|
|
187
193
|
};
|
package/src/.DS_Store
DELETED
|
Binary file
|
|
Binary file
|