tabled/settings/themes/mod.rs
1//! The module contains a variety of configurations of table, which often
2//! changes not a single setting.
3//! As such they are making relatively big changes to the configuration.
4
5mod border_correction;
6mod colorization;
7mod column_names;
8mod layout;
9mod theme;
10
11pub use border_correction::BorderCorrection;
12pub use colorization::{Colorization, ExactColorization};
13pub use column_names::ColumnNames;
14pub use layout::Layout;
15pub use theme::Theme;