Module Values.ThemeValues

A key-value pair that defines a property of a theme.

Sourcetype nonrec t = {
  1. key : String_.t option;
    (*

    The name of the property.

    *)
  2. value : ThemeValue.t option;
    (*

    The value of the property.

    *)
}
Sourceval make : ?key:String_.t -> ?value:ThemeValue.t -> unit -> t
Sourceval to_value : t -> Awso.Botodata.value
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t