Module Values_1.PaletteNavigationSource

Contains color configuration for navigation elements in a workspace theme.

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

    The background color of the navigation area.

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

    The background color when hovering over navigation text.

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

    The background color for active navigation items.

    *)
  4. text : ThemeString.t option;
    (*

    The text color in the navigation area.

    *)
  5. textHover : ThemeString.t option;
    (*

    The text color when hovering over navigation items.

    *)
  6. textActive : ThemeString.t option;
    (*

    The text color for active navigation items.

    *)
  7. invertActionsColors : Values_0.Boolean.t option;
    (*

    Whether to invert the colors of action buttons in the navigation area.

    *)
}
Sourceval make : ?background:??? -> ?textBackgroundHover:??? -> ?textBackgroundActive:??? -> ?text:??? -> ?textHover:??? -> ?textActive:??? -> ?invertActionsColors:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `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