diff --git a/Source/Color/Named.swift b/Source/Color/Named.swift index 288213ac..25b71ef7 100644 --- a/Source/Color/Named.swift +++ b/Source/Color/Named.swift @@ -18,10 +18,10 @@ extension Color { public var additive: UInt8 { return self == .Bright ? 60 : 0 } public mutating func toggle() { - switch self { - case .Bright: self = .NonBright - case .NonBright: self = .Bright - } + switch self { + case .Bright: self = .NonBright + case .NonBright: self = .Bright + } } }