Yeah.. though, what I am implying is that every time I transition the color, I have to write a new box-shadow rule instead of just a color change.
(like this)
.some-stuff__u {
box-shadow:8px 8px 8px 8px blue;
}
.some-stuff__u:hover {
box-shadow:8px 8px 8px 8px red;
}
Which, I think, is not logical.