File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ macro_rules! skip_sol {
130130
131131 println!(
132132 " - {}" ,
133- Line :: new( stringify!( $solution) ) . with_state( "skipped" . dimmed ( ) )
133+ Line :: new( stringify!( $solution) ) . with_state( "skipped" . bright_black ( ) )
134134 ) ;
135135 } } ;
136136}
Original file line number Diff line number Diff line change @@ -79,13 +79,13 @@ impl fmt::Display for Line {
7979 . map ( |duration| format ! ( " ({:.2?})" , duration) )
8080 . unwrap_or_else ( String :: new) ;
8181
82- write ! ( f, "{}{}" , self . text, duration. dimmed ( ) ) ?;
82+ write ! ( f, "{}{}" , self . text, duration. bright_black ( ) ) ?;
8383
8484 if let Some ( state) = & self . state {
8585 let width = self . text . chars ( ) . count ( ) + 1 + duration. chars ( ) . count ( ) ;
8686 let dots = display_width - min ( display_width - 5 , width) - 2 ;
8787 let dots: String = iter:: repeat ( '.' ) . take ( dots) . collect ( ) ;
88- write ! ( f, " {}" , dots. dimmed ( ) ) ?;
88+ write ! ( f, " {}" , dots. bright_black ( ) ) ?;
8989
9090 if state. contains ( '\n' ) {
9191 for line in state. trim_matches ( '\n' ) . lines ( ) {
You can’t perform that action at this time.
0 commit comments