Skip to content

Commit

Permalink
fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
0jdxt committed Mar 31, 2021
1 parent d4cc7e3 commit 3224f87
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions src/color.rs
Expand Up @@ -190,8 +190,8 @@ impl Colors {
fn get_light_theme_colour_map() -> FxHashMap<Elem, Colour> {
hashmap! {
// User / Group
Elem::User=> Colour::Fixed(230), // Cornsilk1
Elem::Group=> Colour::Fixed(187), // LightYellow3
Elem::User => Colour::Fixed(230), // Cornsilk1
Elem::Group => Colour::Fixed(187), // LightYellow3

// Permissions
Elem::Read => Colour::Green,
Expand Down Expand Up @@ -241,8 +241,8 @@ impl Colors {
// INode
Elem::INode { valid: true } => Colour::Fixed(13), // Pink
Elem::INode { valid: false } => Colour::Fixed(245), // Grey
Elem::Links { valid: true }=> Colour::Fixed(13),
Elem::Links { valid: false }=> Colour::Fixed(245),
Elem::Links { valid: true } => Colour::Fixed(13),
Elem::Links { valid: false } => Colour::Fixed(245),

// TODO add this after we can use file to configure theme
// Elem::TreeEdge => Colour::Fixed(44), // DarkTurquoise
Expand Down
6 changes: 3 additions & 3 deletions src/icon.rs
Expand Up @@ -278,7 +278,7 @@ fn default_icons_by_extension() -> FxHashMap<&'static str, char> {
/*  */ "pdf" => '\u{f1c1}',
/*  */ "php" => '\u{e73d}',
/*  */ "pl" => '\u{e769}',
/* 蘿*/ "pls" => '\u{f910}',
/* 蘿 */ "pls" => '\u{f910}',
/*  */ "png" => '\u{f1c5}',
/*  */ "ppt" => '\u{f1c4}',
/*  */ "pptx" => '\u{f1c4}',
Expand Down Expand Up @@ -332,15 +332,15 @@ fn default_icons_by_extension() -> FxHashMap<&'static str, char> {
/*  */ "txt" => '\u{f15c}',
/*  */ "video" => '\u{f03d}',
/*  */ "vim" => '\u{e62b}',
/* 蘿*/ "vlc" => '\u{f910}',
/* 蘿 */ "vlc" => '\u{f910}',
/* ﵂ */ "vue" => '\u{fd42}',
/*  */ "wav" => '\u{f001}',
/*  */ "webm" => '\u{f03d}',
/*  */ "webp" => '\u{f1c5}',
/*  */ "windows" => '\u{f17a}',
/*  */ "wma" => '\u{f001}',
/*  */ "wmv" => '\u{f03d}',
/* 蘿*/ "wpl" => '\u{f910}',
/* 蘿 */ "wpl" => '\u{f910}',
/*  */ "woff" => '\u{f031}',
/*  */ "woff2" => '\u{f031}',
/*  */ "xls" => '\u{f1c3}',
Expand Down

0 comments on commit 3224f87

Please sign in to comment.