lcode_config/theme/mod.rs
1#![allow(clippy::module_inception, reason = "that's ok")]
2use self::theme::{Edit, Info, Select, Tab, TopicTags};
3
4pub(crate) mod theme;
5
6#[derive(Clone, Copy)]
7#[derive(Debug)]
8#[derive(Default)]
9pub struct Theme {
10 pub tab: Tab,
11
12 pub select: Select,
13 pub edit: Edit,
14 pub topic: TopicTags,
15 pub info: Info,
16}
17
18// impl Theme {
19// pub fn new(edit: Edit) -> Self {
20// Self { edit }
21// }
22// }