mirror of
https://github.com/Mueller-Patrick/DHBW-Service-App.git
synced 2026-05-05 21:07:57 +00:00
600f4c9c76
- Thanks to @liza-kl for the color scheme <3
14 lines
291 B
Swift
14 lines
291 B
Swift
//
|
|
// ColorExtension.swift
|
|
// DHBW-Service
|
|
//
|
|
// Created by Lisa Kletsko on 11.05.21.
|
|
//
|
|
import SwiftUI
|
|
import Foundation
|
|
extension Color {
|
|
static let primaryColor = Color("PrimaryColor")
|
|
static let darkColor = Color("DarkColor")
|
|
static let lightColor = Color("LightColor")
|
|
}
|