iOS:支持浅色/深色外观模式的系统内置颜色
2022-07-09 本文已影响0人
__Simon__
一、对比图
浅色/深色模式对比二、颜色数组
let systemColors: [UIColor] = [
.systemRed,
.systemGreen,
.systemBlue,
.systemOrange,
.systemYellow,
.systemPink,
.systemPurple,
.systemTeal,
.systemIndigo,
.systemBrown,
.systemMint,
.systemCyan,
.systemGray,
.systemGray2,
.systemGray3,
.systemGray4,
.systemGray5,
.systemGray6,
.tintColor,
.label,
.secondaryLabel,
.tertiaryLabel,
.quaternaryLabel,
.link,
.placeholderText,
.separator,
.opaqueSeparator,
.systemBackground,
.secondarySystemBackground,
.tertiarySystemBackground,
.systemGroupedBackground,
.secondarySystemGroupedBackground,
.tertiarySystemGroupedBackground,
.systemFill,
.secondarySystemFill,
.tertiarySystemFill,
.quaternarySystemFill,
.lightText,
.darkText,
.groupTableViewBackground
]