Оцените код, пожалуйста
.palette-small {
display: flex;
}
.palette-box:first-child .palette-small {
flex-direction: column-reverse;
justify-content: center;
}
.palette-box:first-child .color-4 {
order: -1;
align-self: center;
}
.palette-box:first-child .color-3 {
order: 1;
align-self: center;
}
.palette-box:nth-child(2) .palette-small {
flex-direction: column-reverse;
justify-content: space-between;
align-items: flex-start;
}
.palette-box:nth-child(2) .color-2,
.palette-box:nth-child(2) .color-6 {
align-self: flex-end;
}
.palette-box:nth-child(3) .palette-small {
flex-direction: row;
justify-content: space-between;
}
.palette-box:nth-child(3) .part {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.palette-box:last-of-type .palette-small {
flex-direction: row;
justify-content: space-between;
}
.palette-box:last-of-type .part {
display: flex;
}
.palette-box:last-of-type .part:last-child {
flex-direction: column-reverse;
justify-content: space-between;
}