[31/31] 100% оцените код

.palette-small {
display: flex;

}
.palette-box:first-child .palette-small {
flex-direction: column-reverse;
justify-content: center;

}
.palette-box:first-child .color-3 {
order: 3;
align-self: center;
}
.palette-box:first-child .color-4 {
order: -1;
align-self: center;
}

.palette-box:nth-child(2) .palette-small {
flex-direction: column-reverse;
justify-content: space-between;
}
.palette-box:nth-child(2) .color-2,
.palette-box:nth-child(2) .color-6 {
align-self: flex-end;
}

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

.palette-box:nth-child(3) .palette-small,
.palette-box:last-child .palette-small{
justify-content: space-between;
}

.palette-box:nth-child(3) .part {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.palette-box:last-child .part {
display: flex;
}

.palette-box:last-child .part:last-child {
flex-direction: column-reverse;
justify-content: space-between;
}

1 лайк