Skip to content

Commit

Permalink
code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
krugerk committed Oct 3, 2024
1 parent fdd8f11 commit ed78101
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions BeeKit/UI/UIColorExtension.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@ import UIKit
extension UIColor {

public struct Beeminder {
public static let green: UIColor = .init(red: 81.0/255.0,
green: 163.0/255.0,
blue: 81.0/255.0,
alpha: 1)

public static let green = UIColor(red: 81.0/255.0,
green: 163.0/255.0,
blue: 81.0/255.0,
alpha: 1)
public static let blue: UIColor = .systemBlue
public static let orange: UIColor = .systemOrange
public static let red: UIColor = .systemRed

public static let gray: UIColor = .init(white: 0.7, alpha: 1.0)

public static let yellow = UIColor.init(red: 255.0/255.0,
green: 217.0/255.0,
blue: 17.0/255.0,
alpha: 1)
public static let gray = UIColor(white: 0.7, alpha: 1.0)

public static let yellow = UIColor(red: 255.0/255.0,
green: 217.0/255.0,
blue: 17.0/255.0,
alpha: 1)
}
}

0 comments on commit ed78101

Please sign in to comment.