use crate::{options::ConfigColours, utils::error}; use anyhow::Context; use colour_utils::*; use tui::style::{Color, Style}; mod colour_utils; pub struct CanvasColours { pub currently_selected_text_colour: Color, pub currently_selected_bg_colour: Color, pub currently_selected_text_style: Style, pub table_header_style: Style, pub ram_style: Style, pub swap_style: Style, pub rx_style: Style, pub tx_style: Style, pub total_rx_style: Style, pub total_tx_style: Style, pub all_colour_style: Style, pub avg_colour_style: Style, pub cpu_colour_styles: Vec