Theme

public enum Theme : Equatable, Hashable

Defines the style of user interface to apply for components (built-in or custom). Combined with a mode (such as light or dark) it specifies the effective appearance to get upon presentation.

  • Undocumented

    Declaration

    Swift

    case standard
  • Undocumented

    Declaration

    Swift

    case aqua
  • Undocumented

    Declaration

    Swift

    case jewel
  • Undocumented

    Declaration

    Swift

    case generic
  • Undocumented

    Declaration

    Swift

    case none
  • Undocumented

    Declaration

    Swift

    case custom(name: String)
  • Undocumented

    Declaration

    Swift

    public static func named(_ name: String) -> Theme