summaryrefslogtreecommitdiffstats
path: root/src/config
diff options
context:
space:
mode:
authorJeff Zhao <jeff.no.zhao@gmail.com>2022-03-05 15:48:10 -0500
committerJeff Zhao <jeff.no.zhao@gmail.com>2022-03-05 15:48:10 -0500
commit8ea29a05bc8937e9177ae5cf2c112b88cdd3a68a (patch)
tree2ebce70406b695163623fe0f2d64b38adf80057a /src/config
parenta1b313bd1d94917b0677076b6591cc3bd21979f3 (diff)
cargo fmt
Diffstat (limited to 'src/config')
-rw-r--r--src/config/theme/style.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/theme/style.rs b/src/config/theme/style.rs
index aa91d0c..265a4f2 100644
--- a/src/config/theme/style.rs
+++ b/src/config/theme/style.rs
@@ -69,7 +69,7 @@ impl RawAppStyle {
let g = rgb.get_green() as u8;
let b = rgb.get_blue() as u8;
style::Color::Rgb(r, g, b)
- },
+ }
s if s.is_empty() => style::Color::Reset,
s => match s.parse::<Rgb>() {
Ok(rgb) => {