Skip to content

Commit afb8817

Browse files
authored
Merge pull request #162 from quid/feat/QUID-27300-platform-ui-update
feat: update colors to adapt platform UI design update
2 parents cd715e1 + e76a96f commit afb8817

File tree

18 files changed

+90
-58
lines changed

18 files changed

+90
-58
lines changed

packages/react-core/src/Button/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ const Button: React.StatelessFunctionalComponent<Props> & {
155155
156156
${wf(props => {
157157
const variations = {
158-
primary: props.theme.colors.aqua,
158+
primary: props.theme.primaryDefaultBg,
159159
secondary: props.theme.colors.gray2,
160160
okay: OKAY,
161161
warning: WARNING,

packages/react-date-picker/src/__snapshots__/Cell.test.js.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ exports[`renders the expected markup 2`] = `
137137
height: 36px;
138138
width: 30px;
139139
vertical-align: middle;
140-
color: #00c1bb;
140+
color: #72C3C6;
141141
font-family: IBM Plex Sans,Lucida Grande,Tahoma,Verdana,Arial,sans-serif;
142142
font-size: 14px;
143143
line-height: 1.57;

packages/react-forms/src/InputCheckbox/__snapshots__/index.test.js.snap

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ exports[`renders a disabled InputCheckbox 1`] = `
110110
width: 18px;
111111
height: 18px;
112112
border-radius: 2px;
113-
color: #00c1bb;
113+
color: #72C3C6;
114114
border: 1px solid #8F9BA3;
115115
margin: 1px;
116116
overflow: hidden;
@@ -121,7 +121,7 @@ exports[`renders a disabled InputCheckbox 1`] = `
121121
122122
.emotion-1:checked ~ .emotion-3 {
123123
color: #8F9BA3;
124-
border: 1px solid #00c1bb;
124+
border: 1px solid #72C3C6;
125125
}
126126
127127
.emotion-3::before,
@@ -189,11 +189,11 @@ exports[`renders a disabled InputCheckbox 1`] = `
189189
}
190190
191191
.emotion-1:checked:focus-visible ~ .emotion-3 {
192-
box-shadow: 0 0 0 0.5px #FFFFFF,0 0 2px 2px rgba(0,193,187,0.8);
192+
box-shadow: 0 0 0 0.5px #FFFFFF,0 0 2px 2px rgba(114,195,198,0.8);
193193
}
194194
195195
.emotion-1:checked:focus-visible ~ .emotion-3:hover {
196-
box-shadow: 0 0 0 0.5px #FFFFFF,0 0 2px 2px rgba(0,193,187,0.8),0 0 4px rgba(27,31,34,0.8);
196+
box-shadow: 0 0 0 0.5px #FFFFFF,0 0 2px 2px rgba(114,195,198,0.8),0 0 4px rgba(27,31,34,0.8);
197197
}
198198
199199
.emotion-3:hover {
@@ -293,7 +293,7 @@ exports[`renders an InputCheckbox 1`] = `
293293
width: 18px;
294294
height: 18px;
295295
border-radius: 2px;
296-
color: #00c1bb;
296+
color: #72C3C6;
297297
border: 1px solid #8F9BA3;
298298
margin: 1px;
299299
overflow: hidden;
@@ -302,8 +302,8 @@ exports[`renders an InputCheckbox 1`] = `
302302
}
303303
304304
.emotion-1:checked ~ .emotion-3 {
305-
color: #00c1bb;
306-
border: 1px solid #00c1bb;
305+
color: #72C3C6;
306+
border: 1px solid #72C3C6;
307307
}
308308
309309
.emotion-3::before,
@@ -371,11 +371,11 @@ exports[`renders an InputCheckbox 1`] = `
371371
}
372372
373373
.emotion-1:checked:focus-visible ~ .emotion-3 {
374-
box-shadow: 0 0 0 0.5px #FFFFFF,0 0 2px 2px rgba(0,193,187,0.8);
374+
box-shadow: 0 0 0 0.5px #FFFFFF,0 0 2px 2px rgba(114,195,198,0.8);
375375
}
376376
377377
.emotion-1:checked:focus-visible ~ .emotion-3:hover {
378-
box-shadow: 0 0 0 0.5px #FFFFFF,0 0 2px 2px rgba(0,193,187,0.8),0 0 4px rgba(27,31,34,0.8);
378+
box-shadow: 0 0 0 0.5px #FFFFFF,0 0 2px 2px rgba(114,195,198,0.8),0 0 4px rgba(27,31,34,0.8);
379379
}
380380
381381
.emotion-3:hover {

packages/react-forms/src/InputColor/__snapshots__/index.test.js.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ exports[`renders the expected markup 1`] = `
1111
}
1212
1313
.emotion-9:focus-within {
14-
border-color: #00c1bb;
14+
border-color: #72C3C6;
1515
}
1616
1717
.emotion-9[data-invalid='true'] {

packages/react-forms/src/InputDate/__snapshots__/index.test.js.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ exports[`renders the expected markup 1`] = `
3333
3434
.emotion-8:focus-within,
3535
.emotion-8 {
36-
border-color: #00c1bb;
36+
border-color: #72C3C6;
3737
}
3838
3939
.emotion-0 {
@@ -233,4 +233,4 @@ exports[`renders the expected markup 1`] = `
233233
selected={2019-01-01T00:00:00.000Z}
234234
/>
235235
</x-manager>
236-
`;
236+
`;

packages/react-forms/src/InputFile/__snapshots__/index.test.js.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ exports[`renders an InputFile 1`] = `
1111
}
1212
1313
.emotion-7:focus-within {
14-
border-color: #00c1bb;
14+
border-color: #72C3C6;
1515
}
1616
1717
.emotion-7[data-invalid='true'] {

packages/react-forms/src/InputGroup/__snapshots__/index.test.js.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ exports[`applies the expected class names 1`] = `
1111
}
1212
1313
.emotion-5:focus-within {
14-
border-color: #00c1bb;
14+
border-color: #72C3C6;
1515
}
1616
1717
.emotion-5[data-invalid='true'] {

packages/react-forms/src/InputRadio/__snapshots__/index.test.js.snap

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ exports[`renders a disabled InputRadio 1`] = `
2424
2525
.emotion-1:checked ~ .emotion-3 {
2626
border-width: 5px;
27-
border-color: #00c1bb;
27+
border-color: #72C3C6;
2828
}
2929
3030
.emotion-1:focus-visible ~ .emotion-3 {
31-
box-shadow: 0 0 0 0.5px #FFFFFF,0 0 2px 2px rgba(0,193,187,0.8);
31+
box-shadow: 0 0 0 0.5px #FFFFFF,0 0 2px 2px rgba(114,195,198,0.8);
3232
}
3333
3434
.emotion-1:focus-visible ~ .emotion-3:hover {
35-
box-shadow: 0 0 0 0.5px #FFFFFF,0 0 2px 2px rgba(0,193,187,0.8),0 0 4px rgba(27,31,34,0.8);
35+
box-shadow: 0 0 0 0.5px #FFFFFF,0 0 2px 2px rgba(114,195,198,0.8),0 0 4px rgba(27,31,34,0.8);
3636
}
3737
3838
.emotion-3:hover {
@@ -93,15 +93,15 @@ exports[`renders an InputRadio 1`] = `
9393
9494
.emotion-1:checked ~ .emotion-3 {
9595
border-width: 5px;
96-
border-color: #00c1bb;
96+
border-color: #72C3C6;
9797
}
9898
9999
.emotion-1:focus-visible ~ .emotion-3 {
100-
box-shadow: 0 0 0 0.5px #FFFFFF,0 0 2px 2px rgba(0,193,187,0.8);
100+
box-shadow: 0 0 0 0.5px #FFFFFF,0 0 2px 2px rgba(114,195,198,0.8);
101101
}
102102
103103
.emotion-1:focus-visible ~ .emotion-3:hover {
104-
box-shadow: 0 0 0 0.5px #FFFFFF,0 0 2px 2px rgba(0,193,187,0.8),0 0 4px rgba(27,31,34,0.8);
104+
box-shadow: 0 0 0 0.5px #FFFFFF,0 0 2px 2px rgba(114,195,198,0.8),0 0 4px rgba(27,31,34,0.8);
105105
}
106106
107107
.emotion-3:hover {

packages/react-forms/src/InputRange/__snapshots__/index.test.js.snap

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ exports[`renders a Track component 2`] = `
6868
exports[`renders an InputRange 1`] = `
6969
@keyframes animation-0 {
7070
from {
71-
box-shadow: 0 0 0 0 rgba(0,167,184,0.26);
71+
box-shadow: 0 0 0 0 rgba(114,195,198,0.26);
7272
}
7373
7474
to {
75-
box-shadow: 0 0 0 3px rgba(0,167,184,0.26);
75+
box-shadow: 0 0 0 3px rgba(114,195,198,0.26);
7676
}
7777
}
7878
@@ -111,7 +111,7 @@ exports[`renders an InputRange 1`] = `
111111
}
112112
113113
.emotion-0 {
114-
color: #00c1bb;
114+
color: #72C3C6;
115115
}
116116
117117
.emotion-6 {
@@ -122,15 +122,15 @@ exports[`renders an InputRange 1`] = `
122122
right: 0;
123123
height: 100%;
124124
width: 100%;
125-
color: #00c1bb;
125+
color: #72C3C6;
126126
}
127127
128128
.emotion-4 {
129129
color: #6C7983;
130130
}
131131
132132
.emotion-13 {
133-
color: #00c1bb;
133+
color: #72C3C6;
134134
top: 50%;
135135
left: 0;
136136
position: absolute;

packages/react-forms/src/InputText/__snapshots__/index.test.js.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ exports[`renders the expected markup 1`] = `
3636
}
3737
3838
.emotion-3:focus-within {
39-
border-color: #00c1bb;
39+
border-color: #72C3C6;
4040
}
4141
4242
.emotion-0 {

0 commit comments

Comments
 (0)