1//! The module contains a varieity 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 colorization;
6mod column_names;
7mod theme;
8
9pub use colorization::{Colorization, ExactColorization};
10pub use column_names::ColumnNames;
11pub use theme::Theme;
12