KindlyEventStyle

public struct KindlyEventStyle

Style data for events

  • Background color in hex format

    Declaration

    Swift

    public let background: String?
  • Button background color in hex format

    Declaration

    Swift

    public let buttonBackground: String?
  • Button text color in hex format

    Declaration

    Swift

    public let buttonText: String?
  • Header background color in hex format

    Declaration

    Swift

    public let headerBackground: String?
  • Header text color in hex format

    Declaration

    Swift

    public let headerText: String?
  • Input background color in hex format

    Declaration

    Swift

    public let inputBackground: String?
  • Input text color in hex format

    Declaration

    Swift

    public let inputText: String?
  • User message background color in hex format

    Declaration

    Swift

    public let userMessageBackground: String?
  • User message text color in hex format

    Declaration

    Swift

    public let userMessageTextColor: String?
  • Bot message background color in hex format

    Declaration

    Swift

    public let botMessageBackground: String?
  • Bot message text color in hex format

    Declaration

    Swift

    public let botMessageTextColor: String?
  • Undocumented

    Declaration

    Swift

    public init(
    	background: String? = nil,
    	buttonBackground: String? = nil,
    	buttonText: String? = nil,
    	headerBackground: String? = nil,
    	headerText: String? = nil,
    	inputBackground: String? = nil,
    	inputText: String? = nil,
    	userMessageBackground: String? = nil,
    	userMessageTextColor: String? = nil,
    	botMessageBackground: String? = nil,
    	botMessageTextColor: String? = nil
    )