Skip to content

Commit 0d671f4

Browse files
committed
made colors lighter
1 parent 08ab2ed commit 0d671f4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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"))

0 commit comments

Comments
 (0)