// // VibrantLabel.swift // NetNewsWire-iOS // // Created by Maurice Parker on 10/22/19. // Copyright © 2019 Ranchero Software. All rights reserved. // import UIKit final class VibrantLabel: UILabel { override init(frame: CGRect) { super.init(frame: frame) commonInit() } required init?(coder: NSCoder) { super.init(coder: coder) commonInit() } private func commonInit() { highlightedTextColor = AppColor.vibrantText } }