I'm trying to set all my colours in one Swift file that can be used throughout my application.
The following code below results in...
import Foundation
import UIKit
class DotColors {
let tsblueColor = UIColor(red:58/255.0, green: 125/255.0, blue: 208/255.0, alpha: 1.0)
}
... Expected ';' after top level declarator