Added bold to theme titles

This commit is contained in:
ms2300 2018-08-27 14:22:36 -06:00 committed by David Peter
parent 4ea3e6bbb7
commit 1837d364fe
1 changed files with 2 additions and 1 deletions

View File

@ -34,6 +34,7 @@ use std::process;
use std::collections::HashSet;
use ansi_term::Colour::Green;
use ansi_term::Style;
use app::{App, Config};
use assets::{clear_assets, config_dir, HighlightingAssets};
@ -137,7 +138,7 @@ pub fn list_themes(assets: &HighlightingAssets, config: &mut Config) {
config.files = vec![Some("assets/theme_preview.rs")];
config.output_components = OutputComponents(style);
for (theme, _) in themes.iter() {
println!("{}\n", theme);
println!("{}\n", Style::new().bold().paint(theme));
config.theme = theme.to_string();
let _controller = Controller::new(&config, &assets).run();
println!("--------------------------------\n");