SwiftUI:我在哪里可以获得标准颜色列表?

SwiftUI: WHere can I get a list of standard colors?

在 SwiftUI 中,我可以使用如下方式分配颜色:

Text("…")
.background(Color.something)

我知道我可以 select 一些硬编码颜色,以及我自己的自定义颜色。

我想为 MacOS 外观主题使用标准颜色(我不确定正确的术语是什么)。特别是,我想获得标准文本背景颜色(在浅色外观中为白色)。

SwiftUI 可以使用这些颜色吗?如果可以,我在哪里可以找到它们?

我猜你是这个意思

Text("…")
.background(Color(NSColor.textBackgroundColor))

完整列表在UI Element Colors