bottom 0.14.6

A customizable cross-platform graphical process/system monitor for the terminal. Supports Linux, macOS, and Windows.
Documentation
use serde::{Deserialize, Serialize};

use super::ColourStr;

/// Styling specific to the CPU widget.
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
#[cfg_attr(feature = "generate_schema", derive(schemars::JsonSchema))]
#[cfg_attr(test, serde(deny_unknown_fields), derive(PartialEq, Eq))]
pub(crate) struct CpuStyle {
    /// The colour of the "All" CPU label.
    #[serde(alias = "all_entry_color")]
    pub(crate) all_entry_colour: Option<ColourStr>,

    /// The colour of the average CPU label and graph line.
    #[serde(alias = "avg_entry_color")]
    pub(crate) avg_entry_colour: Option<ColourStr>,

    /// Colour of each CPU threads' label and graph line. Read in order.
    #[serde(alias = "cpu_core_colors")]
    pub(crate) cpu_core_colours: Option<Vec<ColourStr>>,
}