| 4 | |
| 5 | #[derive(Clone)] |
| 6 | pub struct Theme { |
| 7 | pub is_dark: bool, |
| 8 | pub colors: ThemeColors, |
| 9 | styles: HashMap<String, Style>, |
| 10 | } |
| 11 | |
| 12 | #[derive(Clone)] |
| 13 | pub struct ThemeColors { |
nothing calls this directly
no outgoing calls
no test coverage detected