()
| 262 | |
| 263 | impl Default for ThemeConfig { |
| 264 | fn default() -> Self { |
| 265 | let default_light_theme_id = Self::startup_theme_bootstrap_manifest() |
| 266 | .default_light_theme_id |
| 267 | .as_str(); |
| 268 | let mut theme = Self::get_builtin_theme(default_light_theme_id) |
| 269 | .expect("startup theme bootstrap manifest must include the default light theme"); |
| 270 | theme.selection_id = None; |
| 271 | theme |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | impl ThemeConfig { |