13 lines
210 B
Swift
13 lines
210 B
Swift
//
|
|
// Constants.swift
|
|
// OnCue
|
|
//
|
|
// Created by Pradyun Setti on 22/06/2024.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
public struct Constants {
|
|
static let colors: [Color] = [.red, .orange, .yellow, .green, .blue, .indigo]
|
|
}
|