美文网首页
iOS:支持浅色/深色外观模式的系统内置颜色

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

作者: __Simon__ | 来源:发表于2022-07-09 00:12 被阅读0次

    一、对比图

    浅色/深色模式对比

    二、颜色数组

    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:支持浅色/深色外观模式的系统内置颜色

          本文链接:https://www.haomeiwen.com/subject/cwdbbrtx.html