@@ -39,6 +39,11 @@ public enum GradientTemplateSize2: String, CaseIterable {
39
39
case mermaidLagoon
40
40
case chocolateTruffle
41
41
case neonNights
42
+ case fieryEmbers
43
+ case morningDew
44
+ case starryNight
45
+ case auroraBorealis
46
+ case sunsetBlaze
42
47
43
48
/// The name of the gradient template.
44
49
public var name : String {
@@ -213,6 +218,31 @@ public enum GradientTemplateSize2: String, CaseIterable {
213
218
Color ( hex: " #FF00FF " ) , Color ( hex: " #00FFFF " ) ,
214
219
Color ( hex: " #FF1493 " ) , Color ( hex: " #00FF00 " )
215
220
]
221
+ case . fieryEmbers:
222
+ return [
223
+ Color ( hex: " #FF6347 " ) , Color ( hex: " #FF4500 " ) ,
224
+ Color ( hex: " #FF7F50 " ) , Color ( hex: " #FFA500 " )
225
+ ]
226
+ case . morningDew:
227
+ return [
228
+ Color ( hex: " #98FB98 " ) , Color ( hex: " #00FA9A " ) ,
229
+ Color ( hex: " #7FFF00 " ) , Color ( hex: " #32CD32 " )
230
+ ]
231
+ case . starryNight:
232
+ return [
233
+ Color ( hex: " #191970 " ) , Color ( hex: " #483D8B " ) ,
234
+ Color ( hex: " #6A5ACD " ) , Color ( hex: " #9370DB " )
235
+ ]
236
+ case . auroraBorealis:
237
+ return [
238
+ Color ( hex: " #00FF00 " ) , Color ( hex: " #00FFFF " ) ,
239
+ Color ( hex: " #FF00FF " ) , Color ( hex: " #4B0082 " )
240
+ ]
241
+ case . sunsetBlaze:
242
+ return [
243
+ Color ( hex: " #FF4500 " ) , Color ( hex: " #FF6347 " ) ,
244
+ Color ( hex: " #FF7F50 " ) , Color ( hex: " #FFA07A " )
245
+ ]
216
246
}
217
247
}
218
248
@@ -279,6 +309,16 @@ public enum GradientTemplateSize2: String, CaseIterable {
279
309
return Color ( hex: " #3C2A21 " )
280
310
case . neonNights:
281
311
return Color ( hex: " #000000 " )
312
+ case . fieryEmbers:
313
+ return Color ( hex: " #FF6347 " )
314
+ case . morningDew:
315
+ return Color ( hex: " #98FB98 " )
316
+ case . starryNight:
317
+ return Color ( hex: " #191970 " )
318
+ case . auroraBorealis:
319
+ return Color ( hex: " #000033 " )
320
+ case . sunsetBlaze:
321
+ return Color ( hex: " #FF4500 " )
282
322
}
283
323
}
284
324
}
0 commit comments