File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ fn main() -> io::Result<()> {
4040 mode_count += 2 ;
4141 }
4242 if user_has_read_write_access == 384 {
43- print ! ( "{}" , color:: Fg ( color:: Blue ) ) ;
43+ print ! ( "{}" , color:: Fg ( color:: LightBlue ) ) ;
4444 print ! ( "rw" ) ;
4545 print ! ( "{}" , color:: Fg ( color:: White ) ) ;
4646 print ! ( "-" ) ;
@@ -74,13 +74,13 @@ fn main() -> io::Result<()> {
7474 print ! ( " {}" , convert( fs:: metadata( & e) ?. size( ) as f64 ) ) ;
7575
7676 if let Ok ( time) = e. metadata ( ) ?. created ( ) {
77- print ! ( "{}" , color:: Fg ( color:: Blue ) ) ;
77+ print ! ( "{}" , color:: Fg ( color:: LightBlue ) ) ;
7878 let datetime: DateTime < Utc > = time. into ( ) ;
7979 print ! ( " {} " , datetime. format( "%d-%m-%Y" ) ) ;
8080 print ! ( "{}" , datetime. format( "%T" ) )
8181 }
8282 if let Ok ( time) = e. metadata ( ) ?. modified ( ) {
83- print ! ( "{}" , color:: Fg ( color:: Red ) ) ;
83+ print ! ( "{}" , color:: Fg ( color:: LightRed ) ) ;
8484 let datetime: DateTime < Utc > = time. into ( ) ;
8585 print ! ( " {} " , datetime. format( "%d-%m-%Y" ) ) ;
8686 print ! ( "{}" , datetime. format( "%T" ) )
You can’t perform that action at this time.
0 commit comments