The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build StreamDeck, reference 0.5.1 (f6d1a5), with Swift 6.0 for Linux on 2 Dec 2024 04:13:31 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
246 | 	public static let cornsilk = Color(hexString: "#FFF8DC")
247 | 	/// CSS `crimson`
248 | 	public static let crimson = Color(hexString: "#DC143C")
    |                    |- warning: static property 'crimson' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'crimson' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
249 | 	/// CSS `cyan`
250 | 	public static let cyan = Color(hexString: "#00FFFF")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:250:20: warning: static property 'cyan' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
248 | 	public static let crimson = Color(hexString: "#DC143C")
249 | 	/// CSS `cyan`
250 | 	public static let cyan = Color(hexString: "#00FFFF")
    |                    |- warning: static property 'cyan' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'cyan' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
251 | 	/// CSS `darkblue`
252 | 	public static let darkblue = Color(hexString: "#00008B")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:252:20: warning: static property 'darkblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
250 | 	public static let cyan = Color(hexString: "#00FFFF")
251 | 	/// CSS `darkblue`
252 | 	public static let darkblue = Color(hexString: "#00008B")
    |                    |- warning: static property 'darkblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'darkblue' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | 	/// CSS `darkcyan`
254 | 	public static let darkcyan = Color(hexString: "#008B8B")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:254:20: warning: static property 'darkcyan' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
252 | 	public static let darkblue = Color(hexString: "#00008B")
253 | 	/// CSS `darkcyan`
254 | 	public static let darkcyan = Color(hexString: "#008B8B")
    |                    |- warning: static property 'darkcyan' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'darkcyan' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
255 | 	/// CSS `darkgoldenrod`
256 | 	public static let darkgoldenrod = Color(hexString: "#B8860B")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:256:20: warning: static property 'darkgoldenrod' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
254 | 	public static let darkcyan = Color(hexString: "#008B8B")
255 | 	/// CSS `darkgoldenrod`
256 | 	public static let darkgoldenrod = Color(hexString: "#B8860B")
    |                    |- warning: static property 'darkgoldenrod' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'darkgoldenrod' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
257 | 	/// CSS `darkgray`
258 | 	public static let darkgray = Color(hexString: "#A9A9A9")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:258:20: warning: static property 'darkgray' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
256 | 	public static let darkgoldenrod = Color(hexString: "#B8860B")
257 | 	/// CSS `darkgray`
258 | 	public static let darkgray = Color(hexString: "#A9A9A9")
    |                    |- warning: static property 'darkgray' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'darkgray' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
259 | 	/// CSS `darkgreen`
260 | 	public static let darkgreen = Color(hexString: "#006400")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:260:20: warning: static property 'darkgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
258 | 	public static let darkgray = Color(hexString: "#A9A9A9")
259 | 	/// CSS `darkgreen`
260 | 	public static let darkgreen = Color(hexString: "#006400")
    |                    |- warning: static property 'darkgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'darkgreen' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
261 | 	/// CSS `darkgrey`
262 | 	public static let darkgrey = Color(hexString: "#A9A9A9")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:262:20: warning: static property 'darkgrey' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
260 | 	public static let darkgreen = Color(hexString: "#006400")
261 | 	/// CSS `darkgrey`
262 | 	public static let darkgrey = Color(hexString: "#A9A9A9")
    |                    |- warning: static property 'darkgrey' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'darkgrey' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
263 | 	/// CSS `darkkhaki`
264 | 	public static let darkkhaki = Color(hexString: "#BDB76B")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:264:20: warning: static property 'darkkhaki' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
262 | 	public static let darkgrey = Color(hexString: "#A9A9A9")
263 | 	/// CSS `darkkhaki`
264 | 	public static let darkkhaki = Color(hexString: "#BDB76B")
    |                    |- warning: static property 'darkkhaki' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'darkkhaki' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
265 | 	/// CSS `darkmagenta`
266 | 	public static let darkmagenta = Color(hexString: "#8B008B")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:266:20: warning: static property 'darkmagenta' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
264 | 	public static let darkkhaki = Color(hexString: "#BDB76B")
265 | 	/// CSS `darkmagenta`
266 | 	public static let darkmagenta = Color(hexString: "#8B008B")
    |                    |- warning: static property 'darkmagenta' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'darkmagenta' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
267 | 	/// CSS `darkolivegreen`
268 | 	public static let darkolivegreen = Color(hexString: "#556B2F")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:268:20: warning: static property 'darkolivegreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
266 | 	public static let darkmagenta = Color(hexString: "#8B008B")
267 | 	/// CSS `darkolivegreen`
268 | 	public static let darkolivegreen = Color(hexString: "#556B2F")
    |                    |- warning: static property 'darkolivegreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'darkolivegreen' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
269 | 	/// CSS `darkorange`
270 | 	public static let darkorange = Color(hexString: "#FF8C00")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:270:20: warning: static property 'darkorange' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
268 | 	public static let darkolivegreen = Color(hexString: "#556B2F")
269 | 	/// CSS `darkorange`
270 | 	public static let darkorange = Color(hexString: "#FF8C00")
    |                    |- warning: static property 'darkorange' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'darkorange' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
271 | 	/// CSS `darkorchid`
272 | 	public static let darkorchid = Color(hexString: "#9932CC")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:272:20: warning: static property 'darkorchid' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
270 | 	public static let darkorange = Color(hexString: "#FF8C00")
271 | 	/// CSS `darkorchid`
272 | 	public static let darkorchid = Color(hexString: "#9932CC")
    |                    |- warning: static property 'darkorchid' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'darkorchid' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
273 | 	/// CSS `darkred`
274 | 	public static let darkred = Color(hexString: "#8B0000")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:274:20: warning: static property 'darkred' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
272 | 	public static let darkorchid = Color(hexString: "#9932CC")
273 | 	/// CSS `darkred`
274 | 	public static let darkred = Color(hexString: "#8B0000")
    |                    |- warning: static property 'darkred' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'darkred' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
275 | 	/// CSS `darksalmon`
276 | 	public static let darksalmon = Color(hexString: "#E9967A")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:276:20: warning: static property 'darksalmon' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
274 | 	public static let darkred = Color(hexString: "#8B0000")
275 | 	/// CSS `darksalmon`
276 | 	public static let darksalmon = Color(hexString: "#E9967A")
    |                    |- warning: static property 'darksalmon' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'darksalmon' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
277 | 	/// CSS `darkseagreen`
278 | 	public static let darkseagreen = Color(hexString: "#8FBC8F")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:278:20: warning: static property 'darkseagreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
276 | 	public static let darksalmon = Color(hexString: "#E9967A")
277 | 	/// CSS `darkseagreen`
278 | 	public static let darkseagreen = Color(hexString: "#8FBC8F")
    |                    |- warning: static property 'darkseagreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'darkseagreen' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
279 | 	/// CSS `darkslateblue`
280 | 	public static let darkslateblue = Color(hexString: "#483D8B")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:280:20: warning: static property 'darkslateblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
278 | 	public static let darkseagreen = Color(hexString: "#8FBC8F")
279 | 	/// CSS `darkslateblue`
280 | 	public static let darkslateblue = Color(hexString: "#483D8B")
    |                    |- warning: static property 'darkslateblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'darkslateblue' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
281 | 	/// CSS `darkslategray`
282 | 	public static let darkslategray = Color(hexString: "#2F4F4F")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:282:20: warning: static property 'darkslategray' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
280 | 	public static let darkslateblue = Color(hexString: "#483D8B")
281 | 	/// CSS `darkslategray`
282 | 	public static let darkslategray = Color(hexString: "#2F4F4F")
    |                    |- warning: static property 'darkslategray' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'darkslategray' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
283 | 	/// CSS `darkslategrey`
284 | 	public static let darkslategrey = Color(hexString: "#2F4F4F")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:284:20: warning: static property 'darkslategrey' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
282 | 	public static let darkslategray = Color(hexString: "#2F4F4F")
283 | 	/// CSS `darkslategrey`
284 | 	public static let darkslategrey = Color(hexString: "#2F4F4F")
    |                    |- warning: static property 'darkslategrey' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'darkslategrey' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
285 | 	/// CSS `darkturquoise`
286 | 	public static let darkturquoise = Color(hexString: "#00CED1")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:286:20: warning: static property 'darkturquoise' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
284 | 	public static let darkslategrey = Color(hexString: "#2F4F4F")
285 | 	/// CSS `darkturquoise`
286 | 	public static let darkturquoise = Color(hexString: "#00CED1")
    |                    |- warning: static property 'darkturquoise' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'darkturquoise' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
287 | 	/// CSS `darkviolet`
288 | 	public static let darkviolet = Color(hexString: "#9400D3")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:288:20: warning: static property 'darkviolet' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
286 | 	public static let darkturquoise = Color(hexString: "#00CED1")
287 | 	/// CSS `darkviolet`
288 | 	public static let darkviolet = Color(hexString: "#9400D3")
    |                    |- warning: static property 'darkviolet' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'darkviolet' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
289 | 	/// CSS `deeppink`
290 | 	public static let deeppink = Color(hexString: "#FF1493")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:290:20: warning: static property 'deeppink' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
288 | 	public static let darkviolet = Color(hexString: "#9400D3")
289 | 	/// CSS `deeppink`
290 | 	public static let deeppink = Color(hexString: "#FF1493")
    |                    |- warning: static property 'deeppink' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'deeppink' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
291 | 	/// CSS `deepskyblue`
292 | 	public static let deepskyblue = Color(hexString: "#00BFFF")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:292:20: warning: static property 'deepskyblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
290 | 	public static let deeppink = Color(hexString: "#FF1493")
291 | 	/// CSS `deepskyblue`
292 | 	public static let deepskyblue = Color(hexString: "#00BFFF")
    |                    |- warning: static property 'deepskyblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'deepskyblue' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
293 | 	/// CSS `dimgray`
294 | 	public static let dimgray = Color(hexString: "#696969")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:294:20: warning: static property 'dimgray' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
292 | 	public static let deepskyblue = Color(hexString: "#00BFFF")
293 | 	/// CSS `dimgray`
294 | 	public static let dimgray = Color(hexString: "#696969")
    |                    |- warning: static property 'dimgray' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'dimgray' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
295 | 	/// CSS `dimgrey`
296 | 	public static let dimgrey = Color(hexString: "#696969")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:296:20: warning: static property 'dimgrey' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
294 | 	public static let dimgray = Color(hexString: "#696969")
295 | 	/// CSS `dimgrey`
296 | 	public static let dimgrey = Color(hexString: "#696969")
    |                    |- warning: static property 'dimgrey' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'dimgrey' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
297 | 	/// CSS `dodgerblue`
298 | 	public static let dodgerblue = Color(hexString: "#1E90FF")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:298:20: warning: static property 'dodgerblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
296 | 	public static let dimgrey = Color(hexString: "#696969")
297 | 	/// CSS `dodgerblue`
298 | 	public static let dodgerblue = Color(hexString: "#1E90FF")
    |                    |- warning: static property 'dodgerblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'dodgerblue' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
299 | 	/// CSS `firebrick`
300 | 	public static let firebrick = Color(hexString: "#B22222")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:300:20: warning: static property 'firebrick' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
298 | 	public static let dodgerblue = Color(hexString: "#1E90FF")
299 | 	/// CSS `firebrick`
300 | 	public static let firebrick = Color(hexString: "#B22222")
    |                    |- warning: static property 'firebrick' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'firebrick' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
301 | 	/// CSS `floralwhite`
302 | 	public static let floralwhite = Color(hexString: "#FFFAF0")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:302:20: warning: static property 'floralwhite' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
300 | 	public static let firebrick = Color(hexString: "#B22222")
301 | 	/// CSS `floralwhite`
302 | 	public static let floralwhite = Color(hexString: "#FFFAF0")
    |                    |- warning: static property 'floralwhite' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'floralwhite' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
303 | 	/// CSS `forestgreen`
304 | 	public static let forestgreen = Color(hexString: "#228B22")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:304:20: warning: static property 'forestgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
302 | 	public static let floralwhite = Color(hexString: "#FFFAF0")
303 | 	/// CSS `forestgreen`
304 | 	public static let forestgreen = Color(hexString: "#228B22")
    |                    |- warning: static property 'forestgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'forestgreen' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
305 | 	/// CSS `fuchsia`
306 | 	public static let fuchsia = Color(hexString: "#FF00FF")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:306:20: warning: static property 'fuchsia' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
304 | 	public static let forestgreen = Color(hexString: "#228B22")
305 | 	/// CSS `fuchsia`
306 | 	public static let fuchsia = Color(hexString: "#FF00FF")
    |                    |- warning: static property 'fuchsia' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'fuchsia' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
307 | 	/// CSS `gainsboro`
308 | 	public static let gainsboro = Color(hexString: "#DCDCDC")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:308:20: warning: static property 'gainsboro' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
306 | 	public static let fuchsia = Color(hexString: "#FF00FF")
307 | 	/// CSS `gainsboro`
308 | 	public static let gainsboro = Color(hexString: "#DCDCDC")
    |                    |- warning: static property 'gainsboro' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'gainsboro' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
309 | 	/// CSS `ghostwhite`
310 | 	public static let ghostwhite = Color(hexString: "#F8F8FF")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:310:20: warning: static property 'ghostwhite' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
308 | 	public static let gainsboro = Color(hexString: "#DCDCDC")
309 | 	/// CSS `ghostwhite`
310 | 	public static let ghostwhite = Color(hexString: "#F8F8FF")
    |                    |- warning: static property 'ghostwhite' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'ghostwhite' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
311 | 	/// CSS `gold`
312 | 	public static let gold = Color(hexString: "#FFD700")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:312:20: warning: static property 'gold' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
310 | 	public static let ghostwhite = Color(hexString: "#F8F8FF")
311 | 	/// CSS `gold`
312 | 	public static let gold = Color(hexString: "#FFD700")
    |                    |- warning: static property 'gold' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'gold' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
313 | 	/// CSS `goldenrod`
314 | 	public static let goldenrod = Color(hexString: "#DAA520")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:314:20: warning: static property 'goldenrod' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
312 | 	public static let gold = Color(hexString: "#FFD700")
313 | 	/// CSS `goldenrod`
314 | 	public static let goldenrod = Color(hexString: "#DAA520")
    |                    |- warning: static property 'goldenrod' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'goldenrod' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
315 | 	/// CSS `gray`
316 | 	public static let gray = Color(hexString: "#808080")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:316:20: warning: static property 'gray' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
314 | 	public static let goldenrod = Color(hexString: "#DAA520")
315 | 	/// CSS `gray`
316 | 	public static let gray = Color(hexString: "#808080")
    |                    |- warning: static property 'gray' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'gray' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
317 | 	/// CSS `grey`
318 | 	public static let grey = Color(hexString: "#808080")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:318:20: warning: static property 'grey' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
316 | 	public static let gray = Color(hexString: "#808080")
317 | 	/// CSS `grey`
318 | 	public static let grey = Color(hexString: "#808080")
    |                    |- warning: static property 'grey' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'grey' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
319 | 	/// CSS `green`
320 | 	public static let green = Color(hexString: "#008000")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:320:20: warning: static property 'green' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
318 | 	public static let grey = Color(hexString: "#808080")
319 | 	/// CSS `green`
320 | 	public static let green = Color(hexString: "#008000")
    |                    |- warning: static property 'green' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'green' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
321 | 	/// CSS `greenyellow`
322 | 	public static let greenyellow = Color(hexString: "#ADFF2F")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:322:20: warning: static property 'greenyellow' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
320 | 	public static let green = Color(hexString: "#008000")
321 | 	/// CSS `greenyellow`
322 | 	public static let greenyellow = Color(hexString: "#ADFF2F")
    |                    |- warning: static property 'greenyellow' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'greenyellow' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
323 | 	/// CSS `honeydew`
324 | 	public static let honeydew = Color(hexString: "#F0FFF0")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:324:20: warning: static property 'honeydew' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
322 | 	public static let greenyellow = Color(hexString: "#ADFF2F")
323 | 	/// CSS `honeydew`
324 | 	public static let honeydew = Color(hexString: "#F0FFF0")
    |                    |- warning: static property 'honeydew' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'honeydew' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
325 | 	/// CSS `hotpink`
326 | 	public static let hotpink = Color(hexString: "#FF69B4")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:326:20: warning: static property 'hotpink' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
324 | 	public static let honeydew = Color(hexString: "#F0FFF0")
325 | 	/// CSS `hotpink`
326 | 	public static let hotpink = Color(hexString: "#FF69B4")
    |                    |- warning: static property 'hotpink' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'hotpink' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
327 | 	/// CSS `indianred`
328 | 	public static let indianred = Color(hexString: "#CD5C5C")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:328:20: warning: static property 'indianred' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
326 | 	public static let hotpink = Color(hexString: "#FF69B4")
327 | 	/// CSS `indianred`
328 | 	public static let indianred = Color(hexString: "#CD5C5C")
    |                    |- warning: static property 'indianred' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'indianred' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
329 | 	/// CSS `indigo`
330 | 	public static let indigo = Color(hexString: "#4B0082")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:330:20: warning: static property 'indigo' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
328 | 	public static let indianred = Color(hexString: "#CD5C5C")
329 | 	/// CSS `indigo`
330 | 	public static let indigo = Color(hexString: "#4B0082")
    |                    |- warning: static property 'indigo' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'indigo' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
331 | 	/// CSS `ivory`
332 | 	public static let ivory = Color(hexString: "#FFFFF0")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:332:20: warning: static property 'ivory' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
330 | 	public static let indigo = Color(hexString: "#4B0082")
331 | 	/// CSS `ivory`
332 | 	public static let ivory = Color(hexString: "#FFFFF0")
    |                    |- warning: static property 'ivory' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'ivory' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
333 | 	/// CSS `khaki`
334 | 	public static let khaki = Color(hexString: "#F0E68C")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:334:20: warning: static property 'khaki' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
332 | 	public static let ivory = Color(hexString: "#FFFFF0")
333 | 	/// CSS `khaki`
334 | 	public static let khaki = Color(hexString: "#F0E68C")
    |                    |- warning: static property 'khaki' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'khaki' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
335 | 	/// CSS `lavender`
336 | 	public static let lavender = Color(hexString: "#E6E6FA")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:336:20: warning: static property 'lavender' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
334 | 	public static let khaki = Color(hexString: "#F0E68C")
335 | 	/// CSS `lavender`
336 | 	public static let lavender = Color(hexString: "#E6E6FA")
    |                    |- warning: static property 'lavender' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lavender' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
337 | 	/// CSS `lavenderblush`
338 | 	public static let lavenderblush = Color(hexString: "#FFF0F5")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:338:20: warning: static property 'lavenderblush' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
336 | 	public static let lavender = Color(hexString: "#E6E6FA")
337 | 	/// CSS `lavenderblush`
338 | 	public static let lavenderblush = Color(hexString: "#FFF0F5")
    |                    |- warning: static property 'lavenderblush' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lavenderblush' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
339 | 	/// CSS `lawngreen`
340 | 	public static let lawngreen = Color(hexString: "#7CFC00")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:340:20: warning: static property 'lawngreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
338 | 	public static let lavenderblush = Color(hexString: "#FFF0F5")
339 | 	/// CSS `lawngreen`
340 | 	public static let lawngreen = Color(hexString: "#7CFC00")
    |                    |- warning: static property 'lawngreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lawngreen' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
341 | 	/// CSS `lemonchiffon`
342 | 	public static let lemonchiffon = Color(hexString: "#FFFACD")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:342:20: warning: static property 'lemonchiffon' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
340 | 	public static let lawngreen = Color(hexString: "#7CFC00")
341 | 	/// CSS `lemonchiffon`
342 | 	public static let lemonchiffon = Color(hexString: "#FFFACD")
    |                    |- warning: static property 'lemonchiffon' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lemonchiffon' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
343 | 	/// CSS `lightblue`
344 | 	public static let lightblue = Color(hexString: "#ADD8E6")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:344:20: warning: static property 'lightblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
342 | 	public static let lemonchiffon = Color(hexString: "#FFFACD")
343 | 	/// CSS `lightblue`
344 | 	public static let lightblue = Color(hexString: "#ADD8E6")
    |                    |- warning: static property 'lightblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lightblue' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
345 | 	/// CSS `lightcoral`
346 | 	public static let lightcoral = Color(hexString: "#F08080")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:346:20: warning: static property 'lightcoral' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
344 | 	public static let lightblue = Color(hexString: "#ADD8E6")
345 | 	/// CSS `lightcoral`
346 | 	public static let lightcoral = Color(hexString: "#F08080")
    |                    |- warning: static property 'lightcoral' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lightcoral' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
347 | 	/// CSS `lightcyan`
348 | 	public static let lightcyan = Color(hexString: "#E0FFFF")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:348:20: warning: static property 'lightcyan' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
346 | 	public static let lightcoral = Color(hexString: "#F08080")
347 | 	/// CSS `lightcyan`
348 | 	public static let lightcyan = Color(hexString: "#E0FFFF")
    |                    |- warning: static property 'lightcyan' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lightcyan' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
349 | 	/// CSS `lightgoldenrodyellow`
350 | 	public static let lightgoldenrodyellow = Color(hexString: "#FAFAD2")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:350:20: warning: static property 'lightgoldenrodyellow' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
348 | 	public static let lightcyan = Color(hexString: "#E0FFFF")
349 | 	/// CSS `lightgoldenrodyellow`
350 | 	public static let lightgoldenrodyellow = Color(hexString: "#FAFAD2")
    |                    |- warning: static property 'lightgoldenrodyellow' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lightgoldenrodyellow' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
351 | 	/// CSS `lightgray`
352 | 	public static let lightgray = Color(hexString: "#D3D3D3")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:352:20: warning: static property 'lightgray' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
350 | 	public static let lightgoldenrodyellow = Color(hexString: "#FAFAD2")
351 | 	/// CSS `lightgray`
352 | 	public static let lightgray = Color(hexString: "#D3D3D3")
    |                    |- warning: static property 'lightgray' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lightgray' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
353 | 	/// CSS `lightgreen`
354 | 	public static let lightgreen = Color(hexString: "#90EE90")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:354:20: warning: static property 'lightgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
352 | 	public static let lightgray = Color(hexString: "#D3D3D3")
353 | 	/// CSS `lightgreen`
354 | 	public static let lightgreen = Color(hexString: "#90EE90")
    |                    |- warning: static property 'lightgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lightgreen' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
355 | 	/// CSS `lightgrey`
356 | 	public static let lightgrey = Color(hexString: "#D3D3D3")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:356:20: warning: static property 'lightgrey' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
354 | 	public static let lightgreen = Color(hexString: "#90EE90")
355 | 	/// CSS `lightgrey`
356 | 	public static let lightgrey = Color(hexString: "#D3D3D3")
    |                    |- warning: static property 'lightgrey' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lightgrey' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
357 | 	/// CSS `lightpink`
358 | 	public static let lightpink = Color(hexString: "#FFB6C1")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:358:20: warning: static property 'lightpink' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
356 | 	public static let lightgrey = Color(hexString: "#D3D3D3")
357 | 	/// CSS `lightpink`
358 | 	public static let lightpink = Color(hexString: "#FFB6C1")
    |                    |- warning: static property 'lightpink' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lightpink' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
359 | 	/// CSS `lightsalmon`
360 | 	public static let lightsalmon = Color(hexString: "#FFA07A")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:360:20: warning: static property 'lightsalmon' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
358 | 	public static let lightpink = Color(hexString: "#FFB6C1")
359 | 	/// CSS `lightsalmon`
360 | 	public static let lightsalmon = Color(hexString: "#FFA07A")
    |                    |- warning: static property 'lightsalmon' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lightsalmon' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
361 | 	/// CSS `lightseagreen`
362 | 	public static let lightseagreen = Color(hexString: "#20B2AA")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:362:20: warning: static property 'lightseagreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
360 | 	public static let lightsalmon = Color(hexString: "#FFA07A")
361 | 	/// CSS `lightseagreen`
362 | 	public static let lightseagreen = Color(hexString: "#20B2AA")
    |                    |- warning: static property 'lightseagreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lightseagreen' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
363 | 	/// CSS `lightskyblue`
364 | 	public static let lightskyblue = Color(hexString: "#87CEFA")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:364:20: warning: static property 'lightskyblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
362 | 	public static let lightseagreen = Color(hexString: "#20B2AA")
363 | 	/// CSS `lightskyblue`
364 | 	public static let lightskyblue = Color(hexString: "#87CEFA")
    |                    |- warning: static property 'lightskyblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lightskyblue' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
365 | 	/// CSS `lightslategray`
366 | 	public static let lightslategray = Color(hexString: "#778899")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:366:20: warning: static property 'lightslategray' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
364 | 	public static let lightskyblue = Color(hexString: "#87CEFA")
365 | 	/// CSS `lightslategray`
366 | 	public static let lightslategray = Color(hexString: "#778899")
    |                    |- warning: static property 'lightslategray' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lightslategray' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
367 | 	/// CSS `lightslategrey`
368 | 	public static let lightslategrey = Color(hexString: "#778899")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:368:20: warning: static property 'lightslategrey' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
366 | 	public static let lightslategray = Color(hexString: "#778899")
367 | 	/// CSS `lightslategrey`
368 | 	public static let lightslategrey = Color(hexString: "#778899")
    |                    |- warning: static property 'lightslategrey' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lightslategrey' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
369 | 	/// CSS `lightsteelblue`
370 | 	public static let lightsteelblue = Color(hexString: "#B0C4DE")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:370:20: warning: static property 'lightsteelblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
368 | 	public static let lightslategrey = Color(hexString: "#778899")
369 | 	/// CSS `lightsteelblue`
370 | 	public static let lightsteelblue = Color(hexString: "#B0C4DE")
    |                    |- warning: static property 'lightsteelblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lightsteelblue' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
371 | 	/// CSS `lightyellow`
372 | 	public static let lightyellow = Color(hexString: "#FFFFE0")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:372:20: warning: static property 'lightyellow' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
370 | 	public static let lightsteelblue = Color(hexString: "#B0C4DE")
371 | 	/// CSS `lightyellow`
372 | 	public static let lightyellow = Color(hexString: "#FFFFE0")
    |                    |- warning: static property 'lightyellow' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lightyellow' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
373 | 	/// CSS `lime`
374 | 	public static let lime = Color(hexString: "#00FF00")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:374:20: warning: static property 'lime' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
372 | 	public static let lightyellow = Color(hexString: "#FFFFE0")
373 | 	/// CSS `lime`
374 | 	public static let lime = Color(hexString: "#00FF00")
    |                    |- warning: static property 'lime' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'lime' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
375 | 	/// CSS `limegreen`
376 | 	public static let limegreen = Color(hexString: "#32CD32")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:376:20: warning: static property 'limegreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
374 | 	public static let lime = Color(hexString: "#00FF00")
375 | 	/// CSS `limegreen`
376 | 	public static let limegreen = Color(hexString: "#32CD32")
    |                    |- warning: static property 'limegreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'limegreen' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
377 | 	/// CSS `linen`
378 | 	public static let linen = Color(hexString: "#FAF0E6")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:378:20: warning: static property 'linen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
376 | 	public static let limegreen = Color(hexString: "#32CD32")
377 | 	/// CSS `linen`
378 | 	public static let linen = Color(hexString: "#FAF0E6")
    |                    |- warning: static property 'linen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'linen' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
379 | 	/// CSS `magenta`
380 | 	public static let magenta = Color(hexString: "#FF00FF")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:380:20: warning: static property 'magenta' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
378 | 	public static let linen = Color(hexString: "#FAF0E6")
379 | 	/// CSS `magenta`
380 | 	public static let magenta = Color(hexString: "#FF00FF")
    |                    |- warning: static property 'magenta' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'magenta' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
381 | 	/// CSS `maroon`
382 | 	public static let maroon = Color(hexString: "#800000")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:382:20: warning: static property 'maroon' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
380 | 	public static let magenta = Color(hexString: "#FF00FF")
381 | 	/// CSS `maroon`
382 | 	public static let maroon = Color(hexString: "#800000")
    |                    |- warning: static property 'maroon' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'maroon' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
383 | 	/// CSS `mediumaquamarine`
384 | 	public static let mediumaquamarine = Color(hexString: "#66CDAA")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:384:20: warning: static property 'mediumaquamarine' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
382 | 	public static let maroon = Color(hexString: "#800000")
383 | 	/// CSS `mediumaquamarine`
384 | 	public static let mediumaquamarine = Color(hexString: "#66CDAA")
    |                    |- warning: static property 'mediumaquamarine' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mediumaquamarine' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
385 | 	/// CSS `mediumblue`
386 | 	public static let mediumblue = Color(hexString: "#0000CD")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:386:20: warning: static property 'mediumblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
384 | 	public static let mediumaquamarine = Color(hexString: "#66CDAA")
385 | 	/// CSS `mediumblue`
386 | 	public static let mediumblue = Color(hexString: "#0000CD")
    |                    |- warning: static property 'mediumblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mediumblue' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
387 | 	/// CSS `mediumorchid`
388 | 	public static let mediumorchid = Color(hexString: "#BA55D3")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:388:20: warning: static property 'mediumorchid' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
386 | 	public static let mediumblue = Color(hexString: "#0000CD")
387 | 	/// CSS `mediumorchid`
388 | 	public static let mediumorchid = Color(hexString: "#BA55D3")
    |                    |- warning: static property 'mediumorchid' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mediumorchid' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
389 | 	/// CSS `mediumpurple`
390 | 	public static let mediumpurple = Color(hexString: "#9370DB")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:390:20: warning: static property 'mediumpurple' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
388 | 	public static let mediumorchid = Color(hexString: "#BA55D3")
389 | 	/// CSS `mediumpurple`
390 | 	public static let mediumpurple = Color(hexString: "#9370DB")
    |                    |- warning: static property 'mediumpurple' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mediumpurple' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
391 | 	/// CSS `mediumseagreen`
392 | 	public static let mediumseagreen = Color(hexString: "#3CB371")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:392:20: warning: static property 'mediumseagreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
390 | 	public static let mediumpurple = Color(hexString: "#9370DB")
391 | 	/// CSS `mediumseagreen`
392 | 	public static let mediumseagreen = Color(hexString: "#3CB371")
    |                    |- warning: static property 'mediumseagreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mediumseagreen' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
393 | 	/// CSS `mediumslateblue`
394 | 	public static let mediumslateblue = Color(hexString: "#7B68EE")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:394:20: warning: static property 'mediumslateblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
392 | 	public static let mediumseagreen = Color(hexString: "#3CB371")
393 | 	/// CSS `mediumslateblue`
394 | 	public static let mediumslateblue = Color(hexString: "#7B68EE")
    |                    |- warning: static property 'mediumslateblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mediumslateblue' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
395 | 	/// CSS `mediumspringgreen`
396 | 	public static let mediumspringgreen = Color(hexString: "#00FA9A")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:396:20: warning: static property 'mediumspringgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
394 | 	public static let mediumslateblue = Color(hexString: "#7B68EE")
395 | 	/// CSS `mediumspringgreen`
396 | 	public static let mediumspringgreen = Color(hexString: "#00FA9A")
    |                    |- warning: static property 'mediumspringgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mediumspringgreen' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
397 | 	/// CSS `mediumturquoise`
398 | 	public static let mediumturquoise = Color(hexString: "#48D1CC")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:398:20: warning: static property 'mediumturquoise' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
396 | 	public static let mediumspringgreen = Color(hexString: "#00FA9A")
397 | 	/// CSS `mediumturquoise`
398 | 	public static let mediumturquoise = Color(hexString: "#48D1CC")
    |                    |- warning: static property 'mediumturquoise' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mediumturquoise' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
399 | 	/// CSS `mediumvioletred`
400 | 	public static let mediumvioletred = Color(hexString: "#C71585")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:400:20: warning: static property 'mediumvioletred' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
398 | 	public static let mediumturquoise = Color(hexString: "#48D1CC")
399 | 	/// CSS `mediumvioletred`
400 | 	public static let mediumvioletred = Color(hexString: "#C71585")
    |                    |- warning: static property 'mediumvioletred' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mediumvioletred' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
401 | 	/// CSS `midnightblue`
402 | 	public static let midnightblue = Color(hexString: "#191970")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:402:20: warning: static property 'midnightblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
400 | 	public static let mediumvioletred = Color(hexString: "#C71585")
401 | 	/// CSS `midnightblue`
402 | 	public static let midnightblue = Color(hexString: "#191970")
    |                    |- warning: static property 'midnightblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'midnightblue' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
403 | 	/// CSS `mintcream`
404 | 	public static let mintcream = Color(hexString: "#F5FFFA")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:404:20: warning: static property 'mintcream' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
402 | 	public static let midnightblue = Color(hexString: "#191970")
403 | 	/// CSS `mintcream`
404 | 	public static let mintcream = Color(hexString: "#F5FFFA")
    |                    |- warning: static property 'mintcream' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mintcream' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
405 | 	/// CSS `mistyrose`
406 | 	public static let mistyrose = Color(hexString: "#FFE4E1")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:406:20: warning: static property 'mistyrose' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
404 | 	public static let mintcream = Color(hexString: "#F5FFFA")
405 | 	/// CSS `mistyrose`
406 | 	public static let mistyrose = Color(hexString: "#FFE4E1")
    |                    |- warning: static property 'mistyrose' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'mistyrose' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
407 | 	/// CSS `moccasin`
408 | 	public static let moccasin = Color(hexString: "#FFE4B5")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:408:20: warning: static property 'moccasin' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
406 | 	public static let mistyrose = Color(hexString: "#FFE4E1")
407 | 	/// CSS `moccasin`
408 | 	public static let moccasin = Color(hexString: "#FFE4B5")
    |                    |- warning: static property 'moccasin' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'moccasin' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
409 | 	/// CSS `navajowhite`
410 | 	public static let navajowhite = Color(hexString: "#FFDEAD")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:410:20: warning: static property 'navajowhite' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
408 | 	public static let moccasin = Color(hexString: "#FFE4B5")
409 | 	/// CSS `navajowhite`
410 | 	public static let navajowhite = Color(hexString: "#FFDEAD")
    |                    |- warning: static property 'navajowhite' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'navajowhite' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
411 | 	/// CSS `navy`
412 | 	public static let navy = Color(hexString: "#000080")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:412:20: warning: static property 'navy' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
410 | 	public static let navajowhite = Color(hexString: "#FFDEAD")
411 | 	/// CSS `navy`
412 | 	public static let navy = Color(hexString: "#000080")
    |                    |- warning: static property 'navy' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'navy' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
413 | 	/// CSS `oldlace`
414 | 	public static let oldlace = Color(hexString: "#FDF5E6")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:414:20: warning: static property 'oldlace' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
412 | 	public static let navy = Color(hexString: "#000080")
413 | 	/// CSS `oldlace`
414 | 	public static let oldlace = Color(hexString: "#FDF5E6")
    |                    |- warning: static property 'oldlace' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'oldlace' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
415 | 	/// CSS `olive`
416 | 	public static let olive = Color(hexString: "#808000")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:416:20: warning: static property 'olive' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
414 | 	public static let oldlace = Color(hexString: "#FDF5E6")
415 | 	/// CSS `olive`
416 | 	public static let olive = Color(hexString: "#808000")
    |                    |- warning: static property 'olive' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'olive' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
417 | 	/// CSS `olivedrab`
418 | 	public static let olivedrab = Color(hexString: "#6B8E23")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:418:20: warning: static property 'olivedrab' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
416 | 	public static let olive = Color(hexString: "#808000")
417 | 	/// CSS `olivedrab`
418 | 	public static let olivedrab = Color(hexString: "#6B8E23")
    |                    |- warning: static property 'olivedrab' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'olivedrab' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
419 | 	/// CSS `orange`
420 | 	public static let orange = Color(hexString: "#FFA500")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:420:20: warning: static property 'orange' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
418 | 	public static let olivedrab = Color(hexString: "#6B8E23")
419 | 	/// CSS `orange`
420 | 	public static let orange = Color(hexString: "#FFA500")
    |                    |- warning: static property 'orange' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'orange' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
421 | 	/// CSS `orangered`
422 | 	public static let orangered = Color(hexString: "#FF4500")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:422:20: warning: static property 'orangered' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
420 | 	public static let orange = Color(hexString: "#FFA500")
421 | 	/// CSS `orangered`
422 | 	public static let orangered = Color(hexString: "#FF4500")
    |                    |- warning: static property 'orangered' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'orangered' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
423 | 	/// CSS `orchid`
424 | 	public static let orchid = Color(hexString: "#DA70D6")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:424:20: warning: static property 'orchid' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
422 | 	public static let orangered = Color(hexString: "#FF4500")
423 | 	/// CSS `orchid`
424 | 	public static let orchid = Color(hexString: "#DA70D6")
    |                    |- warning: static property 'orchid' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'orchid' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
425 | 	/// CSS `palegoldenrod`
426 | 	public static let palegoldenrod = Color(hexString: "#EEE8AA")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:426:20: warning: static property 'palegoldenrod' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
424 | 	public static let orchid = Color(hexString: "#DA70D6")
425 | 	/// CSS `palegoldenrod`
426 | 	public static let palegoldenrod = Color(hexString: "#EEE8AA")
    |                    |- warning: static property 'palegoldenrod' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'palegoldenrod' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
427 | 	/// CSS `palegreen`
428 | 	public static let palegreen = Color(hexString: "#98FB98")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:428:20: warning: static property 'palegreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
426 | 	public static let palegoldenrod = Color(hexString: "#EEE8AA")
427 | 	/// CSS `palegreen`
428 | 	public static let palegreen = Color(hexString: "#98FB98")
    |                    |- warning: static property 'palegreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'palegreen' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
429 | 	/// CSS `paleturquoise`
430 | 	public static let paleturquoise = Color(hexString: "#AFEEEE")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:430:20: warning: static property 'paleturquoise' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
428 | 	public static let palegreen = Color(hexString: "#98FB98")
429 | 	/// CSS `paleturquoise`
430 | 	public static let paleturquoise = Color(hexString: "#AFEEEE")
    |                    |- warning: static property 'paleturquoise' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'paleturquoise' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
431 | 	/// CSS `palevioletred`
432 | 	public static let palevioletred = Color(hexString: "#DB7093")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:432:20: warning: static property 'palevioletred' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
430 | 	public static let paleturquoise = Color(hexString: "#AFEEEE")
431 | 	/// CSS `palevioletred`
432 | 	public static let palevioletred = Color(hexString: "#DB7093")
    |                    |- warning: static property 'palevioletred' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'palevioletred' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
433 | 	/// CSS `papayawhip`
434 | 	public static let papayawhip = Color(hexString: "#FFEFD5")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:434:20: warning: static property 'papayawhip' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
432 | 	public static let palevioletred = Color(hexString: "#DB7093")
433 | 	/// CSS `papayawhip`
434 | 	public static let papayawhip = Color(hexString: "#FFEFD5")
    |                    |- warning: static property 'papayawhip' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'papayawhip' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
435 | 	/// CSS `peachpuff`
436 | 	public static let peachpuff = Color(hexString: "#FFDAB9")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:436:20: warning: static property 'peachpuff' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
434 | 	public static let papayawhip = Color(hexString: "#FFEFD5")
435 | 	/// CSS `peachpuff`
436 | 	public static let peachpuff = Color(hexString: "#FFDAB9")
    |                    |- warning: static property 'peachpuff' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'peachpuff' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
437 | 	/// CSS `peru`
438 | 	public static let peru = Color(hexString: "#CD853F")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:438:20: warning: static property 'peru' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
436 | 	public static let peachpuff = Color(hexString: "#FFDAB9")
437 | 	/// CSS `peru`
438 | 	public static let peru = Color(hexString: "#CD853F")
    |                    |- warning: static property 'peru' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'peru' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
439 | 	/// CSS `pink`
440 | 	public static let pink = Color(hexString: "#FFC0CB")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:440:20: warning: static property 'pink' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
438 | 	public static let peru = Color(hexString: "#CD853F")
439 | 	/// CSS `pink`
440 | 	public static let pink = Color(hexString: "#FFC0CB")
    |                    |- warning: static property 'pink' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'pink' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
441 | 	/// CSS `plum`
442 | 	public static let plum = Color(hexString: "#DDA0DD")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:442:20: warning: static property 'plum' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
440 | 	public static let pink = Color(hexString: "#FFC0CB")
441 | 	/// CSS `plum`
442 | 	public static let plum = Color(hexString: "#DDA0DD")
    |                    |- warning: static property 'plum' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'plum' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
443 | 	/// CSS `powderblue`
444 | 	public static let powderblue = Color(hexString: "#B0E0E6")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:444:20: warning: static property 'powderblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
442 | 	public static let plum = Color(hexString: "#DDA0DD")
443 | 	/// CSS `powderblue`
444 | 	public static let powderblue = Color(hexString: "#B0E0E6")
    |                    |- warning: static property 'powderblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'powderblue' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
445 | 	/// CSS `purple`
446 | 	public static let purple = Color(hexString: "#800080")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:446:20: warning: static property 'purple' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
444 | 	public static let powderblue = Color(hexString: "#B0E0E6")
445 | 	/// CSS `purple`
446 | 	public static let purple = Color(hexString: "#800080")
    |                    |- warning: static property 'purple' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'purple' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
447 | 	/// CSS `red`
448 | 	public static let red = Color(hexString: "#FF0000")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:448:20: warning: static property 'red' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
446 | 	public static let purple = Color(hexString: "#800080")
447 | 	/// CSS `red`
448 | 	public static let red = Color(hexString: "#FF0000")
    |                    |- warning: static property 'red' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'red' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
449 | 	/// CSS `rosybrown`
450 | 	public static let rosybrown = Color(hexString: "#BC8F8F")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:450:20: warning: static property 'rosybrown' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
448 | 	public static let red = Color(hexString: "#FF0000")
449 | 	/// CSS `rosybrown`
450 | 	public static let rosybrown = Color(hexString: "#BC8F8F")
    |                    |- warning: static property 'rosybrown' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'rosybrown' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
451 | 	/// CSS `royalblue`
452 | 	public static let royalblue = Color(hexString: "#4169E1")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:452:20: warning: static property 'royalblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
450 | 	public static let rosybrown = Color(hexString: "#BC8F8F")
451 | 	/// CSS `royalblue`
452 | 	public static let royalblue = Color(hexString: "#4169E1")
    |                    |- warning: static property 'royalblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'royalblue' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
453 | 	/// CSS `saddlebrown`
454 | 	public static let saddlebrown = Color(hexString: "#8B4513")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:454:20: warning: static property 'saddlebrown' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
452 | 	public static let royalblue = Color(hexString: "#4169E1")
453 | 	/// CSS `saddlebrown`
454 | 	public static let saddlebrown = Color(hexString: "#8B4513")
    |                    |- warning: static property 'saddlebrown' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'saddlebrown' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 | 	/// CSS `salmon`
456 | 	public static let salmon = Color(hexString: "#FA8072")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:456:20: warning: static property 'salmon' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
454 | 	public static let saddlebrown = Color(hexString: "#8B4513")
455 | 	/// CSS `salmon`
456 | 	public static let salmon = Color(hexString: "#FA8072")
    |                    |- warning: static property 'salmon' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'salmon' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
457 | 	/// CSS `sandybrown`
458 | 	public static let sandybrown = Color(hexString: "#F4A460")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:458:20: warning: static property 'sandybrown' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
456 | 	public static let salmon = Color(hexString: "#FA8072")
457 | 	/// CSS `sandybrown`
458 | 	public static let sandybrown = Color(hexString: "#F4A460")
    |                    |- warning: static property 'sandybrown' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'sandybrown' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
459 | 	/// CSS `seagreen`
460 | 	public static let seagreen = Color(hexString: "#2E8B57")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:460:20: warning: static property 'seagreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
458 | 	public static let sandybrown = Color(hexString: "#F4A460")
459 | 	/// CSS `seagreen`
460 | 	public static let seagreen = Color(hexString: "#2E8B57")
    |                    |- warning: static property 'seagreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'seagreen' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
461 | 	/// CSS `seashell`
462 | 	public static let seashell = Color(hexString: "#2E8B57")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:462:20: warning: static property 'seashell' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
460 | 	public static let seagreen = Color(hexString: "#2E8B57")
461 | 	/// CSS `seashell`
462 | 	public static let seashell = Color(hexString: "#2E8B57")
    |                    |- warning: static property 'seashell' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'seashell' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 | 	/// CSS `sienna`
464 | 	public static let sienna = Color(hexString: "#A0522D")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:464:20: warning: static property 'sienna' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
462 | 	public static let seashell = Color(hexString: "#2E8B57")
463 | 	/// CSS `sienna`
464 | 	public static let sienna = Color(hexString: "#A0522D")
    |                    |- warning: static property 'sienna' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'sienna' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
465 | 	/// CSS `silver`
466 | 	public static let silver = Color(hexString: "#C0C0C0")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:466:20: warning: static property 'silver' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
464 | 	public static let sienna = Color(hexString: "#A0522D")
465 | 	/// CSS `silver`
466 | 	public static let silver = Color(hexString: "#C0C0C0")
    |                    |- warning: static property 'silver' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'silver' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
467 | 	/// CSS `skyblue`
468 | 	public static let skyblue = Color(hexString: "#87CEEB")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:468:20: warning: static property 'skyblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
466 | 	public static let silver = Color(hexString: "#C0C0C0")
467 | 	/// CSS `skyblue`
468 | 	public static let skyblue = Color(hexString: "#87CEEB")
    |                    |- warning: static property 'skyblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'skyblue' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
469 | 	/// CSS `slateblue`
470 | 	public static let slateblue = Color(hexString: "#6A5ACD")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:470:20: warning: static property 'slateblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
468 | 	public static let skyblue = Color(hexString: "#87CEEB")
469 | 	/// CSS `slateblue`
470 | 	public static let slateblue = Color(hexString: "#6A5ACD")
    |                    |- warning: static property 'slateblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'slateblue' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
471 | 	/// CSS `slategray`
472 | 	public static let slategray = Color(hexString: "#708090")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:472:20: warning: static property 'slategray' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
470 | 	public static let slateblue = Color(hexString: "#6A5ACD")
471 | 	/// CSS `slategray`
472 | 	public static let slategray = Color(hexString: "#708090")
    |                    |- warning: static property 'slategray' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'slategray' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
473 | 	/// CSS `slategrey`
474 | 	public static let slategrey = Color(hexString: "#708090")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:474:20: warning: static property 'slategrey' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
472 | 	public static let slategray = Color(hexString: "#708090")
473 | 	/// CSS `slategrey`
474 | 	public static let slategrey = Color(hexString: "#708090")
    |                    |- warning: static property 'slategrey' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'slategrey' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
475 | 	/// CSS `snow`
476 | 	public static let snow = Color(hexString: "#FFFAFA")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:476:20: warning: static property 'snow' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
474 | 	public static let slategrey = Color(hexString: "#708090")
475 | 	/// CSS `snow`
476 | 	public static let snow = Color(hexString: "#FFFAFA")
    |                    |- warning: static property 'snow' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'snow' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
477 | 	/// CSS `springgreen`
478 | 	public static let springgreen = Color(hexString: "#00FF7F")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:478:20: warning: static property 'springgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
476 | 	public static let snow = Color(hexString: "#FFFAFA")
477 | 	/// CSS `springgreen`
478 | 	public static let springgreen = Color(hexString: "#00FF7F")
    |                    |- warning: static property 'springgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'springgreen' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
479 | 	/// CSS `steelblue`
480 | 	public static let steelblue = Color(hexString: "#4682B4")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:480:20: warning: static property 'steelblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
478 | 	public static let springgreen = Color(hexString: "#00FF7F")
479 | 	/// CSS `steelblue`
480 | 	public static let steelblue = Color(hexString: "#4682B4")
    |                    |- warning: static property 'steelblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'steelblue' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
481 | 	/// CSS `tan`
482 | 	public static let tan = Color(hexString: "#D2B48C")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:482:20: warning: static property 'tan' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
480 | 	public static let steelblue = Color(hexString: "#4682B4")
481 | 	/// CSS `tan`
482 | 	public static let tan = Color(hexString: "#D2B48C")
    |                    |- warning: static property 'tan' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'tan' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
483 | 	/// CSS `teal`
484 | 	public static let teal = Color(hexString: "#008080")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:484:20: warning: static property 'teal' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
482 | 	public static let tan = Color(hexString: "#D2B48C")
483 | 	/// CSS `teal`
484 | 	public static let teal = Color(hexString: "#008080")
    |                    |- warning: static property 'teal' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'teal' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
485 | 	/// CSS `thistle`
486 | 	public static let thistle = Color(hexString: "#D8BFD8")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:486:20: warning: static property 'thistle' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
484 | 	public static let teal = Color(hexString: "#008080")
485 | 	/// CSS `thistle`
486 | 	public static let thistle = Color(hexString: "#D8BFD8")
    |                    |- warning: static property 'thistle' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'thistle' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
487 | 	/// CSS `tomato`
488 | 	public static let tomato = Color(hexString: "#FF6347")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:488:20: warning: static property 'tomato' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
486 | 	public static let thistle = Color(hexString: "#D8BFD8")
487 | 	/// CSS `tomato`
488 | 	public static let tomato = Color(hexString: "#FF6347")
    |                    |- warning: static property 'tomato' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'tomato' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
489 | 	/// CSS `turquoise`
490 | 	public static let turquoise = Color(hexString: "#40E0D0")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:490:20: warning: static property 'turquoise' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
488 | 	public static let tomato = Color(hexString: "#FF6347")
489 | 	/// CSS `turquoise`
490 | 	public static let turquoise = Color(hexString: "#40E0D0")
    |                    |- warning: static property 'turquoise' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'turquoise' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
491 | 	/// CSS `violet`
492 | 	public static let violet = Color(hexString: "#EE82EE")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:492:20: warning: static property 'violet' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
490 | 	public static let turquoise = Color(hexString: "#40E0D0")
491 | 	/// CSS `violet`
492 | 	public static let violet = Color(hexString: "#EE82EE")
    |                    |- warning: static property 'violet' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'violet' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
493 | 	/// CSS `wheat`
494 | 	public static let wheat = Color(hexString: "#F5DEB3")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:494:20: warning: static property 'wheat' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
492 | 	public static let violet = Color(hexString: "#EE82EE")
493 | 	/// CSS `wheat`
494 | 	public static let wheat = Color(hexString: "#F5DEB3")
    |                    |- warning: static property 'wheat' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'wheat' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
495 | 	/// CSS `white`
496 | 	public static let white = Color(hexString: "#FFFFFF")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:496:20: warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
494 | 	public static let wheat = Color(hexString: "#F5DEB3")
495 | 	/// CSS `white`
496 | 	public static let white = Color(hexString: "#FFFFFF")
    |                    |- warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'white' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
497 | 	/// CSS `whitesmoke`
498 | 	public static let whitesmoke = Color(hexString: "#F5F5F5")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:498:20: warning: static property 'whitesmoke' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
496 | 	public static let white = Color(hexString: "#FFFFFF")
497 | 	/// CSS `whitesmoke`
498 | 	public static let whitesmoke = Color(hexString: "#F5F5F5")
    |                    |- warning: static property 'whitesmoke' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'whitesmoke' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 | 	/// CSS `yellow`
500 | 	public static let yellow = Color(hexString: "#FFFF00")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:500:20: warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
498 | 	public static let whitesmoke = Color(hexString: "#F5F5F5")
499 | 	/// CSS `yellow`
500 | 	public static let yellow = Color(hexString: "#FFFF00")
    |                    |- warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'yellow' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 | 	/// CSS `yellowgreen`
502 | 	public static let yellowgreen = Color(hexString: "#9ACD32")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:502:20: warning: static property 'yellowgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
500 | 	public static let yellow = Color(hexString: "#FFFF00")
501 | 	/// CSS `yellowgreen`
502 | 	public static let yellowgreen = Color(hexString: "#9ACD32")
    |                    |- warning: static property 'yellowgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: annotate 'yellowgreen' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
503 |
504 | }
/host/spi-builder-workspace/Sources/SDPlusLayout/Properties.swift:56:13: warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 | 	}
55 |
56 | 	static var standard = Rect(x: 0, y: 0, width: 200, height: 100)
   |             |- warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'standard' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'standard' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/spi-builder-workspace/Sources/SDPlusLayout/Properties.swift:56:13: warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 | 	}
55 |
56 | 	static var standard = Rect(x: 0, y: 0, width: 200, height: 100)
   |             |- warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'standard' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'standard' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/spi-builder-workspace/Sources/SDPlusLayout/Properties.swift:56:13: warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 | 	}
55 |
56 | 	static var standard = Rect(x: 0, y: 0, width: 200, height: 100)
   |             |- warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'standard' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'standard' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/spi-builder-workspace/Sources/SDPlusLayout/Properties.swift:56:13: warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 | 	}
55 |
56 | 	static var standard = Rect(x: 0, y: 0, width: 200, height: 100)
   |             |- warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'standard' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'standard' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
[62/147] Compiling ArgumentParser Name.swift
[63/147] Compiling ArgumentParser Parsed.swift
[64/147] Compiling ArgumentParser ParsedValues.swift
[65/147] Compiling ArgumentParser ParserError.swift
[66/147] Compiling ArgumentParser SplitArguments.swift
[67/147] Compiling ArgumentParser DumpHelpGenerator.swift
[68/147] Compiling ArgumentParser HelpCommand.swift
[69/147] Compiling ArgumentParser HelpGenerator.swift
[70/147] Compiling ArgumentParser MessageInfo.swift
[71/147] Compiling ArgumentParser UsageGenerator.swift
[74/147] Compiling SDPlusLayout ModifiedItem.swift
[75/147] Compiling SDPlusLayout Properties.swift
[76/147] Compiling ArgumentParser EnumerableFlag.swift
[77/147] Compiling ArgumentParser ExpressibleByArgument.swift
[78/147] Compiling ArgumentParser ParsableArguments.swift
[79/147] Compiling ArgumentParser ParsableArgumentsValidation.swift
[80/147] Compiling ArgumentParser ParsableCommand.swift
[81/147] Compiling ArgumentParser ArgumentDecoder.swift
/host/spi-builder-workspace/Sources/SDPlusLayout/Properties.swift:56:13: warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 | 	}
55 |
56 | 	static var standard = Rect(x: 0, y: 0, width: 200, height: 100)
   |             |- warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'standard' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'standard' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/host/spi-builder-workspace/Sources/SDPlusLayout/Properties.swift:56:13: warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
54 | 	}
55 |
56 | 	static var standard = Rect(x: 0, y: 0, width: 200, height: 100)
   |             |- warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'standard' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: annotate 'standard' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
[85/148] Compiling ArgumentParser ArgumentDefinition.swift
[86/148] Compiling ArgumentParser ArgumentSet.swift
[87/148] Compiling ArgumentParser CommandParser.swift
[88/148] Compiling ArgumentParser InputKey.swift
[89/148] Compiling ArgumentParser InputOrigin.swift
[105/155] Emitting module SwiftSyntax
[124/155] Compiling SwiftSyntax SyntaxDeclNodes.swift
[125/155] Compiling SwiftSyntax SyntaxExprNodes.swift
[126/155] Compiling SwiftSyntax SyntaxNodes.swift
[127/155] Compiling SwiftSyntax SyntaxPatternNodes.swift
[128/155] Compiling SwiftSyntax SyntaxStmtNodes.swift
[129/155] Compiling SwiftSyntax SyntaxTypeNodes.swift
[134/155] Compiling SwiftSyntax SyntaxTraits.swift
[135/155] Compiling SwiftSyntax SyntaxTransform.swift
[142/156] Wrapping AST for SwiftSyntax for debugging
[144/207] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[145/207] Compiling SwiftDiagnostics FixIt.swift
[146/207] Compiling SwiftBasicFormat Syntax+Extensions.swift
[147/207] Compiling SwiftDiagnostics Note.swift
[148/207] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[149/207] Compiling SwiftDiagnostics Message.swift
[150/207] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[151/207] Emitting module SwiftBasicFormat
[152/207] Compiling SwiftBasicFormat BasicFormat.swift
[153/208] Emitting module SwiftDiagnostics
[154/208] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[155/208] Compiling SwiftDiagnostics Convenience.swift
[156/208] Compiling SwiftDiagnostics Diagnostic.swift
[158/209] Wrapping AST for SwiftBasicFormat for debugging
[159/209] Wrapping AST for SwiftDiagnostics for debugging
[161/209] Compiling SwiftParser Lexer.swift
[162/209] Compiling SwiftParser RegexLiteralLexer.swift
[163/209] Compiling SwiftParser UnicodeScalarExtensions.swift
[164/209] Compiling SwiftParser Lookahead.swift
[165/209] Compiling SwiftParser LoopProgressCondition.swift
[166/214] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[167/214] Compiling SwiftParser StringLiterals.swift
[168/214] Compiling SwiftParser SwiftParserCompatibility.swift
[169/214] Compiling SwiftParser SyntaxUtils.swift
[170/214] Compiling SwiftParser TokenConsumer.swift
[171/214] Compiling SwiftParser TokenPrecedence.swift
[172/214] Compiling SwiftParser TokenSpec.swift
[173/214] Compiling SwiftParser TokenSpecSet.swift
[174/214] Compiling SwiftParser TopLevel.swift
[175/214] Compiling SwiftParser TriviaParser.swift
[176/214] Compiling SwiftParser Modifiers.swift
[177/214] Compiling SwiftParser Names.swift
[178/214] Compiling SwiftParser Nominals.swift
[179/214] Compiling SwiftParser Parameters.swift
[180/214] Compiling SwiftParser ParseSourceFile.swift
[181/214] Compiling SwiftParser Parser.swift
[182/214] Compiling SwiftParser Patterns.swift
[183/214] Compiling SwiftParser Recovery.swift
[184/214] Compiling SwiftParser Specifiers.swift
[185/214] Compiling SwiftParser Statements.swift
[186/214] Emitting module SwiftParser
[187/214] Compiling SwiftParser Attributes.swift
[188/214] Compiling SwiftParser Availability.swift
[189/214] Compiling SwiftParser CharacterInfo.swift
[190/214] Compiling SwiftParser CollectionNodes+Parsable.swift
[191/214] Compiling SwiftParser Declarations.swift
[192/214] Compiling SwiftParser Directives.swift
[193/214] Compiling SwiftParser ExperimentalFeatures.swift
[194/214] Compiling SwiftParser Expressions.swift
[195/214] Compiling SwiftParser IncrementalParseTransition.swift
[196/214] Compiling SwiftParser Cursor.swift
[197/214] Compiling SwiftParser Lexeme.swift
[198/214] Compiling SwiftParser LexemeSequence.swift
[199/214] Compiling SwiftParser Types.swift
[200/214] Compiling SwiftParser IsLexerClassified.swift
[201/214] Compiling SwiftParser LayoutNodes+Parsable.swift
[202/214] Compiling SwiftParser Parser+TokenSpecSet.swift
[203/214] Compiling SwiftParser TokenSpecStaticMembers.swift
[204/215] Wrapping AST for SwiftParser for debugging
[206/238] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[207/239] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[208/239] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[209/239] Compiling SwiftParserDiagnostics Utils.swift
[210/239] Compiling SwiftOperators Operator.swift
[211/239] Compiling SwiftOperators OperatorError+Diagnostics.swift
[212/239] Emitting module SwiftOperators
[213/240] Compiling SwiftOperators PrecedenceGroup.swift
[214/240] Compiling SwiftOperators OperatorTable.swift
[215/240] Compiling SwiftOperators OperatorTable+Semantics.swift
[216/240] Compiling SwiftOperators PrecedenceGraph.swift
[217/240] Compiling SwiftOperators OperatorError.swift
[218/240] Compiling SwiftOperators OperatorTable+Defaults.swift
[219/240] Compiling SwiftOperators OperatorTable+Folding.swift
[220/240] Compiling SwiftOperators SyntaxSynthesis.swift
[221/241] Wrapping AST for SwiftOperators for debugging
[223/241] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[224/241] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[225/241] Compiling SwiftParserDiagnostics PresenceUtils.swift
[226/241] Emitting module SwiftParserDiagnostics
[231/241] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[232/241] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[233/242] Wrapping AST for SwiftParserDiagnostics for debugging
[235/256] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[236/256] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[237/257] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[238/257] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[239/257] Compiling SwiftSyntaxBuilder Indenter.swift
[240/257] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[241/257] Emitting module SwiftSyntaxBuilder
[242/257] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[243/257] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[244/257] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[245/257] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[246/257] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[247/257] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[248/257] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[249/257] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[250/258] Wrapping AST for SwiftSyntaxBuilder for debugging
[252/272] Compiling SwiftSyntaxMacros Macro.swift
[253/272] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[254/272] Compiling SwiftSyntaxMacros MemberMacro.swift
[255/272] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[256/272] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[257/272] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[258/272] Compiling SwiftSyntaxMacros Macro+Format.swift
[259/273] Compiling SwiftSyntaxMacros PeerMacro.swift
[260/273] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[261/273] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[262/273] Compiling SwiftSyntaxMacros AccessorMacro.swift
[263/273] Compiling SwiftSyntaxMacros AttachedMacro.swift
[264/273] Emitting module SwiftSyntaxMacros
[265/273] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[266/273] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[267/274] Wrapping AST for SwiftSyntaxMacros for debugging
[269/282] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[270/282] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[271/282] Emitting module SwiftSyntaxMacroExpansion
[272/282] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[273/282] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[274/282] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[275/282] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[276/282] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[277/283] Wrapping AST for SwiftSyntaxMacroExpansion for debugging
[279/290] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[280/290] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[281/290] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[282/290] Emitting module SwiftCompilerPluginMessageHandling
[283/290] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[284/290] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[285/290] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[286/291] Wrapping AST for SwiftCompilerPluginMessageHandling for debugging
[288/293] Emitting module SwiftCompilerPlugin
[289/293] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[290/294] Wrapping AST for SwiftCompilerPlugin for debugging
[292/298] Compiling StreamDeckMacros Plugin.swift
[293/298] Compiling StreamDeckMacros KeyMacros.swift
/host/spi-builder-workspace/Sources/StreamDeckMacros/KeyMacros.swift:17:20: warning: static property 'inheritedType' is not concurrency-safe because non-'Sendable' type 'TypeSyntax' may have shared mutable state; this is an error in the Swift 6 language mode
15 | public struct GlobalSettingsMacro: SharedKeyMacro {
16 |
17 | 	public static let inheritedType = TypeSyntax("GlobalSettingKey")
   |                    `- warning: static property 'inheritedType' is not concurrency-safe because non-'Sendable' type 'TypeSyntax' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | }
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/generated/SyntaxBaseNodes.swift:613:15: note: struct 'TypeSyntax' does not conform to the 'Sendable' protocol
 611 | }
 612 |
 613 | public struct TypeSyntax: TypeSyntaxProtocol, SyntaxHashable {
     |               `- note: struct 'TypeSyntax' does not conform to the 'Sendable' protocol
 614 |   public let _syntaxNode: Syntax
 615 |
/host/spi-builder-workspace/Sources/StreamDeckMacros/KeyMacros.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
 8 | import Foundation
 9 | import SwiftCompilerPlugin
10 | import SwiftSyntax
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
11 | import SwiftSyntaxBuilder
12 | import SwiftSyntaxMacros
   :
15 | public struct GlobalSettingsMacro: SharedKeyMacro {
16 |
17 | 	public static let inheritedType = TypeSyntax("GlobalSettingKey")
   |                    |- note: annotate 'inheritedType' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | }
/host/spi-builder-workspace/Sources/StreamDeckMacros/KeyMacros.swift:23:20: warning: static property 'inheritedType' is not concurrency-safe because non-'Sendable' type 'TypeSyntax' may have shared mutable state; this is an error in the Swift 6 language mode
21 | public struct EnvironmentMacro: SharedKeyMacro {
22 |
23 | 	public static let inheritedType = TypeSyntax("EnvironmentKey")
   |                    |- warning: static property 'inheritedType' is not concurrency-safe because non-'Sendable' type 'TypeSyntax' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'inheritedType' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | }
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/generated/SyntaxBaseNodes.swift:613:15: note: struct 'TypeSyntax' does not conform to the 'Sendable' protocol
 611 | }
 612 |
 613 | public struct TypeSyntax: TypeSyntaxProtocol, SyntaxHashable {
     |               `- note: struct 'TypeSyntax' does not conform to the 'Sendable' protocol
 614 |   public let _syntaxNode: Syntax
 615 |
[294/298] Emitting module StreamDeckMacros
/host/spi-builder-workspace/Sources/StreamDeckMacros/KeyMacros.swift:17:20: warning: static property 'inheritedType' is not concurrency-safe because non-'Sendable' type 'TypeSyntax' may have shared mutable state; this is an error in the Swift 6 language mode
15 | public struct GlobalSettingsMacro: SharedKeyMacro {
16 |
17 | 	public static let inheritedType = TypeSyntax("GlobalSettingKey")
   |                    `- warning: static property 'inheritedType' is not concurrency-safe because non-'Sendable' type 'TypeSyntax' may have shared mutable state; this is an error in the Swift 6 language mode
18 |
19 | }
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/generated/SyntaxBaseNodes.swift:613:15: note: struct 'TypeSyntax' does not conform to the 'Sendable' protocol
 611 | }
 612 |
 613 | public struct TypeSyntax: TypeSyntaxProtocol, SyntaxHashable {
     |               `- note: struct 'TypeSyntax' does not conform to the 'Sendable' protocol
 614 |   public let _syntaxNode: Syntax
 615 |
/host/spi-builder-workspace/Sources/StreamDeckMacros/KeyMacros.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
 8 | import Foundation
 9 | import SwiftCompilerPlugin
10 | import SwiftSyntax
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'SwiftSyntax'
11 | import SwiftSyntaxBuilder
12 | import SwiftSyntaxMacros
   :
15 | public struct GlobalSettingsMacro: SharedKeyMacro {
16 |
17 | 	public static let inheritedType = TypeSyntax("GlobalSettingKey")
   |                    |- note: annotate 'inheritedType' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | }
/host/spi-builder-workspace/Sources/StreamDeckMacros/KeyMacros.swift:23:20: warning: static property 'inheritedType' is not concurrency-safe because non-'Sendable' type 'TypeSyntax' may have shared mutable state; this is an error in the Swift 6 language mode
21 | public struct EnvironmentMacro: SharedKeyMacro {
22 |
23 | 	public static let inheritedType = TypeSyntax("EnvironmentKey")
   |                    |- warning: static property 'inheritedType' is not concurrency-safe because non-'Sendable' type 'TypeSyntax' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'inheritedType' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 | }
/host/spi-builder-workspace/.build/checkouts/swift-syntax/Sources/SwiftSyntax/generated/SyntaxBaseNodes.swift:613:15: note: struct 'TypeSyntax' does not conform to the 'Sendable' protocol
 611 | }
 612 |
 613 | public struct TypeSyntax: TypeSyntaxProtocol, SyntaxHashable {
     |               `- note: struct 'TypeSyntax' does not conform to the 'Sendable' protocol
 614 |   public let _syntaxNode: Syntax
 615 |
[295/298] Compiling StreamDeckMacros SharedKeyMacro.swift
[296/299] Wrapping AST for StreamDeckMacros for debugging
[297/299] Write Objects.LinkFileList
[298/299] Linking StreamDeckMacros-tool
[300/338] Compiling StreamDeck PluginManifest.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[301/338] Compiling StreamDeck PluginOS.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[302/338] Compiling StreamDeck PluginProfile.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[303/338] Compiling StreamDeck PluginSoftware.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[304/338] Compiling StreamDeck RotaryEncoder.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[305/343] Compiling StreamDeck ActionBuilder.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[306/343] Compiling StreamDeck ExportCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[307/343] Compiling StreamDeck PluginCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[308/343] Compiling StreamDeck StreamDeckCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[309/343] Compiling StreamDeck StreamDeckKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[310/343] Compiling StreamDeck EventProtocols.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[311/343] Compiling StreamDeck Fonts.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[312/343] Compiling StreamDeck Hardware.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[313/343] Compiling StreamDeck PluginAction.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[314/343] Compiling StreamDeck PluginActionState.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[315/343] Compiling StreamDeck PluginInfo.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[316/343] Compiling StreamDeck EnvironmentKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[317/343] Compiling StreamDeck EnvironmentValues.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[318/343] Compiling StreamDeck EnvironmentWrapper.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[319/343] Compiling StreamDeck ApplicationsToMonitor.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[320/343] Compiling StreamDeck Coordinates.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[321/343] Compiling StreamDeck SDPlugin+Received.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[322/343] Compiling StreamDeck SDPlugin+Sent.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[323/343] Compiling StreamDeck SDPlugin+Support.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[324/343] Compiling StreamDeck StreamDeckPlugin.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[325/343] Compiling StreamDeck ActionControllerRegistry.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[326/343] Compiling StreamDeck Events.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[327/343] Compiling StreamDeck CharSet+DNS.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[328/343] Compiling StreamDeck NSImage+Base64.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[329/343] Compiling StreamDeck URL+Argument.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[330/343] Compiling StreamDeck SettingsMacros.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[331/343] Compiling StreamDeck Action+Received.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[332/343] Compiling StreamDeck Action+Sent.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[333/343] Compiling StreamDeck Action+Support.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[334/343] Compiling StreamDeck Action.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[335/343] Compiling StreamDeck LongPress.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[336/343] Compiling StreamDeck PluginCommunication.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[337/343] Compiling StreamDeck StreamDeckError.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[338/343] Compiling StreamDeck TriggerDescription.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[339/343] Compiling StreamDeck GlobalSettings.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[340/343] Compiling StreamDeck GlobalSettingsKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[341/343] Compiling StreamDeck SettingsWrapper.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[342/343] Compiling StreamDeck State.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
error: emit-module command failed with exit code 1 (use -v to see invocation)
[343/343] Emitting module StreamDeck
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
BUILD FAILURE 6.0 linux