()
| 37 | } |
| 38 | |
| 39 | pub fn create_dark_theme() -> Theme { |
| 40 | Theme { |
| 41 | is_dark: true, |
| 42 | colors: ThemeColors { |
| 43 | primary: crate::style::Color::rgb(0.2, 0.6, 1.0), |
| 44 | background: crate::style::Color::rgb(0.1, 0.1, 0.1), |
| 45 | text: crate::style::Color::rgb(1.0, 1.0, 1.0), |
| 46 | }, |
| 47 | styles: HashMap::new(), |
| 48 | } |
| 49 | } |