Module Bonsai_tui_bar_chart.Theme

Theme to customize your plot.

type t = {
  1. data : Bonsai_term.Attr.Color.t option;
    (*

    Default color for the core part of the plot. For example, the bars of a bar chart or points in a scatter plot.

    *)
  2. label_text : Bonsai_term.Attr.Color.t option;
    (*

    x / y labels

    *)
  3. title : Bonsai_term.Attr.Color.t option;
  4. title_border : Bonsai_term.Attr.Color.t option;
  5. border : Bonsai_term.Attr.Color.t option;
}
val border : t -> Bonsai_term.Attr.Color.t option @@ portable
val title_border : t -> Bonsai_term.Attr.Color.t option @@ portable
val title : t -> Bonsai_term.Attr.Color.t option @@ portable
val label_text : t -> Bonsai_term.Attr.Color.t option @@ portable
val data : t -> Bonsai_term.Attr.Color.t option @@ portable
val empty : t
val catppuccin : flavor:Bonsai_tui_catppuccin.Flavor.t -> data_color:Bonsai_tui_catppuccin.t -> t