mod colour_utils; use anyhow::Context; use colour_utils::*; use tui::style::{Color, Style}; use super::ColourScheme; pub use crate::options::Config; use crate::{constants::*, options::colours::ConfigColours, utils::error}; pub struct CanvasStyling { 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, #[cfg(not(target_os = "windows"))] pub cache_style: Style, pub swap_style: Style, pub arc_style: Style, pub gpu_colour_styles: Vec