iOS:支持浅色/深色外观模式的系统内置颜色

一、对比图

浅色/深色模式对比

二、颜色数组

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
]

你可能感兴趣的:(iOS:支持浅色/深色外观模式的系统内置颜色)