1 //! List of stylesheets 2 //! 3 //! The list depends on what optional dependencies the crate has been 4 //! compiled with. 5 //! 6 //! By default the `no_color` is available. If the crate gets compiled 7 //! with `ansi_term`, the `color` stylesheet is added. 8 9 #[cfg(feature = "color")] 10 pub mod color; 11 pub mod no_color; 12