31/31 Проверьте, пожалуйста

.part,
.palette-small {
display: flex;
justify-content: space-between;
}
/* 1 */
.palette-box:nth-child(1) .palette-small{
flex-direction: column-reverse;
justify-content: center;
}

.palette-box:nth-child(1) .color-3 {
align-self: center;
order: 1;
}

.palette-box:nth-child(1) .color-4 {
align-self: center;
order: -1;
}
/* 2 */
.palette-box:nth-child(2) .palette-small {
flex-direction: column-reverse;
}

.palette-box:nth-child(2) .color-1,
.palette-box:nth-child(2) .color-4 {
align-self: flex-start;
}

.palette-box:nth-child(2) .color-6,
.palette-box:nth-child(2) .color-2 {
align-self: flex-end;
}
/* 3 */
.palette-box:nth-child(3) .part {
flex-direction: column;
}

.palette-box:nth-child(4) .part:first-child {
flex-direction: row;
}
/* 4 */
.palette-box:nth-child(4) .part:last-child {
flex-direction: column-reverse;
}