Module Values_1.PaletteCanvasSource

Contains color configuration for canvas elements in a workspace theme.

Sourcetype nonrec t = {
  1. containerBackground : ThemeString.t option;
    (*

    The background color for container elements.

    *)
  2. pageBackground : ThemeString.t option;
    (*

    The background color for page elements.

    *)
  3. activeBackground : ThemeString.t option;
    (*

    The background color for active elements.

    *)
}
Sourceval make : ?containerBackground:??? -> ?pageBackground:??? -> ?activeBackground:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ThemeString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t