| 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 | |
| 5 | mod colorization; |
| 6 | mod column_names; |
| 7 | mod theme; |
| 8 | |
| 9 | pub use colorization::{Colorization, ExactColorization}; |
| 10 | pub use column_names::ColumnNames; |
| 11 | pub use theme::Theme; |
| 12 |
