`Color` has a `WithOpacity()` method that takes a double [0, 1] but it should also have a complimentary `Opacity` property that returns `Alpha/255.0`. I want an easy way to do this: ```cs myColor = myColor.WithOpacity(myColor.Opacity/2); // reduce existing opacity ```