Description
A stored property with an initializer, e.g.,
static let defaultColor: Color = .red
might be better off as a computed property:
static var defaultColor: Color { .red }or vice versa. Let's create a pair of code actions to go from the first to second or vice-versa.