Module Values_1.PalettePrimarySource

Contains primary color configuration for a workspace theme.

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

    The default primary color used throughout the workspace.

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

    The primary color used for active states.

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

    The text color that contrasts with the primary color for readability.

    *)
}
Sourceval make : ?default:??? -> ?active:??? -> ?contrastText:??? -> 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