diff GeoQuiz/Helpers/CustomColors.swift @ 5:f31a61462e7a

add sound effects
author Dennis C. M. <dennis@denniscm.com>
date Sat, 24 Sep 2022 12:02:09 +0100
parents GeoQuiz/Logic/CustomColors.swift@413e2d21333e
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GeoQuiz/Helpers/CustomColors.swift	Sat Sep 24 12:02:09 2022 +0100
@@ -0,0 +1,43 @@
+//
+//  CustomColors.swift
+//  GeoQuiz
+//
+//  Created by Dennis Concepción Martín on 16/9/22.
+//
+
+import Foundation
+import SwiftUI
+
+extension ShapeStyle where Self == Color {
+    static var atomicTangerine: Color {
+        Color("AtomicTangerine")
+    }
+    
+    static var blueBell: Color {
+        Color("BlueBell")
+    }
+    
+    static var chinaPink: Color {
+        Color("ChinaPink")
+    }
+    
+    static var maizeCrayola: Color {
+        Color("MaizeCrayola")
+    }
+    
+    static var mayaBlue: Color {
+        Color("MayaBlue")
+    }
+    
+    static var middleRed: Color {
+        Color("MiddleRed")
+    }
+    
+    static var pinkLavender: Color {
+        Color("PinkLavender")
+    }
+    
+    static var royalLightBlue: Color {
+        Color("RoyalLightBlue")
+    }
+}