Options for Color Schema
You can modify the colors in the Evidently Dashboards.
Last updated
You can modify the colors in the Evidently Dashboards.
Last updated
By default, Evidently widgets use the red-grey color scheme.
For example, here is how the Data Drift report looks:
To change the colors in the widgets, you can create an object ColorOptions
from the evidently.options.color_scheme
, replace the values you need, and use it in the options list when you create a dashboard.
To define values for the colors, you can use CSS and Plotly compatible strings. For example:
colors names: "blue", "orange", "green"
RGB values: #fff4f2, #ee00aa and so on.
Here is the list of all color scheme options with the type and meaning of each:
Evidently also provides some sensible alternative default schemas that have been pre-selected for your convenience:
'Solarised'
'Karachi Sunrise'
'Berlin Autumn'
'Nightowl'
To use them, simply import them directly and pass them into your Dashboard
options as follows (taking the Berlin Autumn scheme as an example):
Here is an example of the report with the modified color schema:
A Variable in the ColorOptions object | Option type | Option description |
---|---|---|
primary_color
string
A basic color for data visualization. Used by default for all bars and lines in widgets with one dataset. Used as the default for the current data in widgets with two datasets.
secondary_color
string
A basic color to visualize the second dataset in the widgets with two datasets. For example, the reference data.
current_data_color
string
A color for the current data. By default, the primary color is used.
reference_data_color
string
A color for the reference data. By default, the secondary color is used.
color_sequence
array of strings
A set of colors to draw a number of lines in one graph. For example, in the Data Quality dashboard.
fill_color
string
A fill color for areas in line graphs.
zero_line_color
string
A color for the base, zero line in line graphs.
non_visible_color
string
A color for technical, not visible dots or points for better scalability.
underestimation_color
string
A color for the "underestimation" line in the Regression Performance dashboard.
overestimation_color
string
A color for the "overestimation" line in the Regression Performance dashboard.
majority_color
string
A color for the majority line in the Regression Performance dashboard.
---