aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--alacritty/src/display/color.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/alacritty/src/display/color.rs b/alacritty/src/display/color.rs
index 054ca314..f742ee84 100644
--- a/alacritty/src/display/color.rs
+++ b/alacritty/src/display/color.rs
@@ -97,8 +97,8 @@ impl List {
} else {
self[index] = Rgb::new(
if r == 0 { 0 } else { r * 40 + 55 },
- if b == 0 { 0 } else { b * 40 + 55 },
if g == 0 { 0 } else { g * 40 + 55 },
+ if b == 0 { 0 } else { b * 40 + 55 },
);
}
index += 1;