I maintain a CSS framework and am trying to follow semantic versioning in a way that makes the most sense. Would changing the value of non critical property (like the color of an element) be considered a minor change or a patch change? If I am at version 0.5.0 but want to release an update with no new features just changes to some colors, should I release as 0.5.1 or 0.6.0?
While a color change won't exactly "break" a code base, I could see how to some this should be considered a minor change. But for the sole fact that this kind of change is not adding a feature is why I could also see it being just a patch change. Hoping to learn if there is an generally accepted standard for this situation.